Skip to content

Commit 8c50eda

Browse files
committed
CS fix
1 parent 5107851 commit 8c50eda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/TextUI/SourceFilterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ public function testDeterminesWhetherFileIsIncluded(array $expectations, Source
416416
foreach ($expectations as $file => $shouldInclude) {
417417
$this->assertFileExists($file);
418418
$expected[$file] = $shouldInclude;
419-
$actual[$file] = (new SourceFilter($source))->includes($file);
419+
$actual[$file] = new SourceFilter($source)->includes($file);
420420
}
421421
$this->assertEquals($expected, $actual);
422422
}

0 commit comments

Comments
 (0)