Tests: Fix type warning

main
Igor Scheller 6 years ago
parent 0458ce9509
commit 1f433694d2

@ -163,7 +163,7 @@ class ControllerTest extends TestCase
$stats->expects($this->once()) $stats->expects($this->once())
->method('workSeconds') ->method('workSeconds')
->with(true) ->with(true)
->willReturn(60 * 60 * 99.47); ->willReturn((int)(60 * 60 * 99.47));
$this->setExpects($stats, 'newUsers', null, 3); $this->setExpects($stats, 'newUsers', null, 3);
$this->setExpects($stats, 'arrivedUsers', null, 10, $this->exactly(2)); $this->setExpects($stats, 'arrivedUsers', null, 10, $this->exactly(2));
$this->setExpects($stats, 'currentlyWorkingUsers', null, 5); $this->setExpects($stats, 'currentlyWorkingUsers', null, 5);

Loading…
Cancel
Save