]> source.dussan.org Git - redmine.git/commitdiff
cleanup: rubocop: fix Layout/ClosingHeredocIndentation in TextileFormatterTest#test_g...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 22 Nov 2019 14:34:00 +0000 (14:34 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 22 Nov 2019 14:34:00 +0000 (14:34 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19161 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb

index 6cfd696bd5c72d3318a660038be3feca45697556..fb9e5a9675bee070558d8e217fedfb2504fa4165 100644 (file)
@@ -516,24 +516,23 @@ EXPECTED
 
   def test_get_section_should_support_lines_with_spaces_before_heading
     # the lines after Content 2 and Heading 4 contain a space
-    text = <<-STR
-h1. Heading 1
-
-Content 1
+    text = <<~STR
+      h1. Heading 1
 
-h1. Heading 2
+      Content 1
 
-Content 2
+      h1. Heading 2
 
-h1. Heading 3
+      Content 2
 
-Content 3
+      h1. Heading 3
 
-h1. Heading 4
+      Content 3
 
-Content 4
-STR
+      h1. Heading 4
 
+      Content 4
+    STR
     [1, 2, 3, 4].each do |index|
       assert_match /\Ah1. Heading #{index}.+Content #{index}/m, @formatter.new(text).get_section(index).first
     end