summaryrefslogtreecommitdiff
path: root/tests/Unit/Controllers/Metrics/ControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Controllers/Metrics/ControllerTest.php')
-rw-r--r--tests/Unit/Controllers/Metrics/ControllerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Unit/Controllers/Metrics/ControllerTest.php b/tests/Unit/Controllers/Metrics/ControllerTest.php
index 56415e23..381e00f2 100644
--- a/tests/Unit/Controllers/Metrics/ControllerTest.php
+++ b/tests/Unit/Controllers/Metrics/ControllerTest.php
@@ -127,8 +127,8 @@ class ControllerTest extends TestCase
}
/**
- * @covers \Engelsystem\Controllers\Metrics\Controller::stats
* @covers \Engelsystem\Controllers\Metrics\Controller::checkAuth
+ * @covers \Engelsystem\Controllers\Metrics\Controller::stats
*/
public function testStats()
{
@@ -149,7 +149,7 @@ class ControllerTest extends TestCase
'user_count' => 13,
'arrived_user_count' => 10,
'done_work_hours' => 99,
- 'users_in_action' => 5
+ 'users_in_action' => 5,
]))
->willReturn($response);
@@ -213,6 +213,6 @@ class ControllerTest extends TestCase
$stats = $this->createMock(Stats::class);
$config = new Config();
- return array($response, $request, $engine, $stats, $config);
+ return [$response, $request, $engine, $stats, $config];
}
}