Skip to content

Commit 74e922f

Browse files
Fix CS/WS issue
1 parent 5411e71 commit 74e922f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/unit/Runner/Filter/NameFilterIteratorTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@ public function testCaseSensitiveMatch()
1818
{
1919
$iterator = $this->getTestSuiteIteratorMock();
2020
$filter = new NameFilterIterator($iterator, 'Success');
21+
2122
$this->assertTrue((bool) $filter->accept());
2223
}
2324

2425
public function testCaseInsensitiveMatch()
2526
{
2627
$iterator = $this->getTestSuiteIteratorMock();
2728
$filter = new NameFilterIterator($iterator, 'success');
29+
2830
$this->assertTrue((bool) $filter->accept());
2931
}
3032

0 commit comments

Comments
 (0)