Tests: Fix type warning
This commit is contained in:
parent
0458ce9509
commit
1f433694d2
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue