cleanup: rubocop: fix Layout/ClosingHeredocIndentation in TextileFormatterTest#test_get_section_should_support_headings_starting_with_a_tab

git-svn-id: http://svn.redmine.org/redmine/trunk@19160 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2019-11-22 14:33:49 +00:00
parent fb4a59b76f
commit e44d928fdf

View File

@@ -540,7 +540,7 @@ STR
end end
def test_get_section_should_support_headings_starting_with_a_tab def test_get_section_should_support_headings_starting_with_a_tab
text = <<-STR text = <<~STR
h1.\tHeading 1 h1.\tHeading 1
Content 1 Content 1
@@ -549,7 +549,6 @@ h1. Heading 2
Content 2 Content 2
STR STR
assert_match /\Ah1.\tHeading 1\s+Content 1\z/, @formatter.new(text).get_section(1).first assert_match /\Ah1.\tHeading 1\s+Content 1\z/, @formatter.new(text).get_section(1).first
end end