Skip to content

Commit 81c429c

Browse files
Fix
1 parent 1af5b08 commit 81c429c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit/Runner/Filter/NameFilterIteratorTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ class NameFilterIteratorTest extends TestCase
1515
{
1616
public function testCaseSensitiveMatch()
1717
{
18-
$iterator = $this->getTestSuiteItteratorMock();
18+
$iterator = $this->getTestSuiteIteratorMock();
1919
$filter = new NameFilterIterator($iterator, 'Success');
2020
$this->assertTrue((bool) $filter->accept());
2121
}
2222

2323
public function testCaseInsensitiveMatch()
2424
{
25-
$iterator = $this->getTestSuiteItteratorMock();
25+
$iterator = $this->getTestSuiteIteratorMock();
2626
$filter = new NameFilterIterator($iterator, 'success');
2727
$this->assertTrue((bool) $filter->accept());
2828
}
2929

3030
/**
3131
* @return \PHPUnit\Framework\TestSuiteIterator
3232
*/
33-
private function getTestSuiteItteratorMock()
33+
private function getTestSuiteIteratorMock()
3434
{
3535
$success = new \Success();
3636
$iterator = $this->createMock(\PHPUnit\Framework\TestSuiteIterator::class);

0 commit comments

Comments
 (0)