summaryrefslogtreecommitdiffstats
path: root/apps/user_status/tests
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_status/tests')
-rw-r--r--apps/user_status/tests/Unit/Listener/UserLiveStatusListenerTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/user_status/tests/Unit/Listener/UserLiveStatusListenerTest.php b/apps/user_status/tests/Unit/Listener/UserLiveStatusListenerTest.php
index 29f444ece0b..ff12628ba70 100644
--- a/apps/user_status/tests/Unit/Listener/UserLiveStatusListenerTest.php
+++ b/apps/user_status/tests/Unit/Listener/UserLiveStatusListenerTest.php
@@ -99,7 +99,7 @@ class UserLiveStatusListenerTest extends TestCase {
$user->method('getUID')->willReturn($userId);
$event = new UserLiveStatusEvent($user, $eventStatus, $eventTimestamp);
- $this->timeFactory->expects($this->once())
+ $this->timeFactory->expects($this->atMost(1))
->method('getTime')
->willReturn(5000);
@@ -149,6 +149,8 @@ class UserLiveStatusListenerTest extends TestCase {
['john.doe', 'online', 5000, false, 'online', 5000, false, true],
['john.doe', 'away', 5000, false, 'online', 5000, true, true],
['john.doe', 'online', 5000, false, 'away', 5000, true, false],
+ ['john.doe', 'away', 5000, true, 'online', 5000, true, false],
+ ['john.doe', 'online', 5000, true, 'away', 5000, true, false],
];
}