Skip to content

Commit

Permalink
Fix CS/WS issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Sep 7, 2018
1 parent 5411e71 commit 74e922f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/unit/Runner/Filter/NameFilterIteratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ public function testCaseSensitiveMatch()
{
$iterator = $this->getTestSuiteIteratorMock();
$filter = new NameFilterIterator($iterator, 'Success');

$this->assertTrue((bool) $filter->accept());
}

public function testCaseInsensitiveMatch()
{
$iterator = $this->getTestSuiteIteratorMock();
$filter = new NameFilterIterator($iterator, 'success');

$this->assertTrue((bool) $filter->accept());
}

Expand Down

0 comments on commit 74e922f

Please sign in to comment.