Skip to content

Commit

Permalink
Fix tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
elkuku committed Feb 10, 2024
1 parent c73365c commit 29d3a3e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Controller/ControllerAdminAccessTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class ControllerAdminAccessTest extends ControllerBaseTest
{
protected string $controllerRoot = __DIR__.'/../../src/Controller';
protected string $controllerRoot = __DIR__ . '/../../src/Controller';

/**
* @var array<string, array<string, array<string, int>>>
Expand All @@ -17,11 +17,11 @@ class ControllerAdminAccessTest extends ControllerBaseTest
'app_default' => [
'statusCodes' => ['GET' => 200],
],
'login' => [
'login' => [
'statusCodes' => ['GET' => 200],
],
'app_profile' => [
'statusCodes' => ['GET' => 200],
'app_profile' => [
'statusCodes' => ['GET' => 200, 'POST' => 200],
],

];
Expand Down

0 comments on commit 29d3a3e

Please sign in to comment.