diff options
author | Anna Larch <anna@nextcloud.com> | 2025-07-07 19:00:06 +0200 |
---|---|---|
committer | Anna Larch <anna@nextcloud.com> | 2025-07-07 19:00:06 +0200 |
commit | a3faddc614de4f1964399031ab1d0746dda61f54 (patch) | |
tree | 4e8a107b9a5e421e4a0db1081d6203894516bc40 | |
parent | be248ac6753ea4c892db325ded63a8e23a2cea37 (diff) | |
download | nextcloud-server-feat/noid/add-busy-status.tar.gz nextcloud-server-feat/noid/add-busy-status.zip |
fixup! feat: add Busy status and new preset BRB statusfeat/noid/add-busy-status
-rw-r--r-- | apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php b/apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php index 65b07997e82..8a21052b09f 100644 --- a/apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php +++ b/apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php @@ -136,7 +136,7 @@ class StatusServiceIntegrationTest extends TestCase { ); $this->service->setUserStatus( 'test123', - IUserStatus::AWAY, + IUserStatus::BUSY, IUserStatus::MESSAGE_CALENDAR_BUSY, true, ); @@ -147,12 +147,12 @@ class StatusServiceIntegrationTest extends TestCase { $this->service->setUserStatus( 'test123', - IUserStatus::AWAY, + IUserStatus::BUSY, IUserStatus::MESSAGE_CALL, true, ); self::assertSame( - IUserStatus::AWAY, + IUserStatus::BUSY, $this->service->findByUserId('test123')->getStatus(), ); @@ -182,7 +182,7 @@ class StatusServiceIntegrationTest extends TestCase { $nostatus = $this->service->setUserStatus( 'test123', - IUserStatus::AWAY, + IUserStatus::BUSY, IUserStatus::MESSAGE_CALENDAR_BUSY, true, ); |