Skip to content

Commit

Permalink
Fix issue in running unit tests in build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rougin committed Nov 16, 2023
1 parent 9971dbf commit 78b7e38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/Controllers/BaseControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class BaseControllerTest extends AbstractTestCase
*/
protected function doSetUp()
{
parent::setUp();
parent::doSetUp();

$response = $this->container->get(self::RESPONSE);

Expand Down
2 changes: 1 addition & 1 deletion tests/Controllers/JsonControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class JsonControllerTest extends AbstractTestCase
*/
protected function doSetUp()
{
parent::setUp();
parent::doSetUp();

$response = $this->container->get(self::RESPONSE);

Expand Down
2 changes: 1 addition & 1 deletion tests/Session/SessionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class SessionTest extends AbstractTestCase
*/
protected function doSetUp()
{
parent::setUp();
parent::doSetUp();

$container = new Container;

Expand Down

0 comments on commit 78b7e38

Please sign in to comment.