Skip to content

Commit

Permalink
fix coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
znbailey authored and sebastianbergmann committed May 8, 2020
1 parent 0d2a0f4 commit be1410b
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions tests/Output/UnifiedDiffOutputBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace SebastianBergmann\Diff\Output;

use PHPUnit\Framework\TestCase;
Expand All @@ -16,9 +15,9 @@
/**
* @covers SebastianBergmann\Diff\Output\UnifiedDiffOutputBuilder
*
* @uses SebastianBergmann\Diff\Differ
* @uses SebastianBergmann\Diff\Output\AbstractChunkOutputBuilder
* @uses SebastianBergmann\Diff\TimeEfficientLongestCommonSubsequenceCalculator
* @uses SebastianBergmann\Diff\Differ
* @uses SebastianBergmann\Diff\Output\AbstractChunkOutputBuilder
* @uses SebastianBergmann\Diff\TimeEfficientLongestCommonSubsequenceCalculator
*/
final class UnifiedDiffOutputBuilderTest extends TestCase
{
Expand Down Expand Up @@ -84,9 +83,6 @@ public function provideDiffWithLineNumbers(): array
}

/**
* @param string $from
* @param string $to
*
* @dataProvider provideStringsThatAreTheSame
*/
public function testEmptyDiffProducesEmptyOutput(string $from, string $to): void
Expand All @@ -103,7 +99,7 @@ public function provideStringsThatAreTheSame(): array
['a', 'a'],
['these strings are the same', 'these strings are the same'],
["\n", "\n"],
["multi-line strings\nare the same", "multi-line strings\nare the same"]
["multi-line strings\nare the same", "multi-line strings\nare the same"],
];
}
}

0 comments on commit be1410b

Please sign in to comment.