diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Unit/Controllers/Metrics/ControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Controllers/Metrics/ControllerTest.php b/tests/Unit/Controllers/Metrics/ControllerTest.php index 381e00f2..18daa96a 100644 --- a/tests/Unit/Controllers/Metrics/ControllerTest.php +++ b/tests/Unit/Controllers/Metrics/ControllerTest.php @@ -163,7 +163,7 @@ class ControllerTest extends TestCase $stats->expects($this->once()) ->method('workSeconds') ->with(true) - ->willReturn(60 * 60 * 99.47); + ->willReturn((int)(60 * 60 * 99.47)); $this->setExpects($stats, 'newUsers', null, 3); $this->setExpects($stats, 'arrivedUsers', null, 10, $this->exactly(2)); $this->setExpects($stats, 'currentlyWorkingUsers', null, 5); |