File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,22 +15,22 @@ class NameFilterIteratorTest extends TestCase
15
15
{
16
16
public function testCaseSensitiveMatch ()
17
17
{
18
- $ iterator = $ this ->getTestSuiteItteratorMock ();
18
+ $ iterator = $ this ->getTestSuiteIteratorMock ();
19
19
$ filter = new NameFilterIterator ($ iterator , 'Success ' );
20
20
$ this ->assertTrue ((bool ) $ filter ->accept ());
21
21
}
22
22
23
23
public function testCaseInsensitiveMatch ()
24
24
{
25
- $ iterator = $ this ->getTestSuiteItteratorMock ();
25
+ $ iterator = $ this ->getTestSuiteIteratorMock ();
26
26
$ filter = new NameFilterIterator ($ iterator , 'success ' );
27
27
$ this ->assertTrue ((bool ) $ filter ->accept ());
28
28
}
29
29
30
30
/**
31
31
* @return \PHPUnit\Framework\TestSuiteIterator
32
32
*/
33
- private function getTestSuiteItteratorMock ()
33
+ private function getTestSuiteIteratorMock ()
34
34
{
35
35
$ success = new \Success ();
36
36
$ iterator = $ this ->createMock (\PHPUnit \Framework \TestSuiteIterator::class);
You can’t perform that action at this time.
0 commit comments