File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,15 +75,15 @@ public function testParseWithMultipleChunks(): void
75
75
76
76
public function testParseWithRemovedLines (): void
77
77
{
78
- $ content = <<<A
78
+ $ content = <<<END
79
79
diff --git a/Test.txt b/Test.txt
80
80
index abcdefg..abcdefh 100644
81
81
--- a/Test.txt
82
82
+++ b/Test.txt
83
83
@@ -49,9 +49,8 @@
84
84
A
85
85
-B
86
- A ;
86
+ END ;
87
87
$ diffs = $ this ->parser ->parse ($ content );
88
88
$ this ->assertInternalType ('array ' , $ diffs );
89
89
$ this ->assertContainsOnlyInstancesOf (Diff::class, $ diffs );
@@ -118,7 +118,7 @@ public function testParseWithRemovedLines(): void
118
118
119
119
public function testParseDiffForMulitpleFiles (): void
120
120
{
121
- $ content = <<<A
121
+ $ content = <<<END
122
122
diff --git a/Test.txt b/Test.txt
123
123
index abcdefg..abcdefh 100644
124
124
--- a/Test.txt
@@ -134,7 +134,7 @@ public function testParseDiffForMulitpleFiles(): void
134
134
@@ -1,2 +1,3 @@
135
135
A
136
136
+B
137
- A ;
137
+ END ;
138
138
$ diffs = $ this ->parser ->parse ($ content );
139
139
$ this ->assertCount (2 , $ diffs );
140
140
You can’t perform that action at this time.
0 commit comments