Skip to content
This repository was archived by the owner on May 1, 2019. It is now read-only.

Commit d48d962

Browse files
committed
CS and test class name fix
1 parent 1ef97b5 commit d48d962

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

module/ZfModule/test/ZfModuleTest/Controller/IndexControllerTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use EdpGithub\Listener\Exception\RuntimeException as EdpGithubRuntimeException;
1414
use Zend\Mvc\Router\RouteMatch;
1515

16-
class ModuleTest extends PHPUnit_Framework_TestCase
16+
class IndexControllerTest extends PHPUnit_Framework_TestCase
1717
{
1818
/**
1919
* @var IndexController
@@ -55,16 +55,16 @@ public function setUp()
5555
->getMock();
5656

5757
$this->controller = new IndexController(
58-
$this->moduleMapper,
59-
$this->moduleService,
58+
$this->moduleMapper,
59+
$this->moduleService,
6060
$this->repositoryRetriever
6161
);
6262

6363
$this->zfcUserAuthentication = $this->getMockBuilder('ZfcUser\Controller\Plugin\ZfcUserAuthentication')
6464
->getMock();
6565

6666
$this->controller->getPluginManager()->setService(
67-
'zfcUserAuthentication',
67+
'zfcUserAuthentication',
6868
$this->zfcUserAuthentication
6969
);
7070
}

0 commit comments

Comments
 (0)