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
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);
You can’t perform that action at this time.
0 commit comments