Skip to content

Commit b530a2f

Browse files
committed
Removed testEmptyDiff() and testEmptyDiff_toArray() as d2f4198 removed the code these tests covered.
1 parent 379b390 commit b530a2f

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

tests/DiffTest.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -240,22 +240,6 @@ public function testComparisonErrorOverlapingMatches2_toArray()
240240
$this->assertEquals($expected, $this->diff->diffToArray('abcdde', 'abcde'));
241241
}
242242

243-
/**
244-
* @covers SebastianBergmann\Diff::diff
245-
*/
246-
public function testEmptyDiff()
247-
{
248-
$this->assertEquals('', $this->diff->diff('abc', 'abc'));
249-
}
250-
251-
/**
252-
* @covers SebastianBergmann\Diff::toArray
253-
*/
254-
public function testEmptyDiff_toArray()
255-
{
256-
$this->assertEquals(array(), $this->diff->diffToArray('abc', 'abc'));
257-
}
258-
259243
public function testCustomHeader()
260244
{
261245
$diff = new Diff('CUSTOM HEADER');

0 commit comments

Comments
 (0)