cleanup: rubocop: fix Layout/IndentHeredoc in Redmine::UnifiedDiffTest#test_line_starting_with_dashes

git-svn-id: http://svn.redmine.org/redmine/trunk@18974 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2019-11-08 15:15:23 +00:00
parent 41f1922d23
commit 2c020e132a

View File

@@ -113,28 +113,27 @@ DIFF
end
def test_line_starting_with_dashes
diff = Redmine::UnifiedDiff.new(<<-DIFF
--- old.txt Wed Nov 11 14:24:58 2009
+++ new.txt Wed Nov 11 14:25:02 2009
@@ -1,8 +1,4 @@
-Lines that starts with dashes:
-
-------------------------
--- file.c
-------------------------
+A line that starts with dashes:
diff = Redmine::UnifiedDiff.new(<<~DIFF)
--- old.txt Wed Nov 11 14:24:58 2009
+++ new.txt Wed Nov 11 14:25:02 2009
@@ -1,8 +1,4 @@
-Lines that starts with dashes:
-
-------------------------
--- file.c
-------------------------
+A line that starts with dashes:
and removed.
and removed.
@@ -23,4 +19,4 @@
@@ -23,4 +19,4 @@
-Another chunk of change
+Another chunk of changes
-Another chunk of change
+Another chunk of changes
DIFF
)
DIFF
assert_equal 1, diff.size
end