aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Core
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2024-02-13 10:26:36 +0100
committerJohn Molakvoæ <skjnldsv@protonmail.com>2024-02-13 21:06:31 +0100
commit4a509dfe8ec3287b513cc7d68342adc859870ee5 (patch)
treea6acc8cb7f08498e4dda9c3bce32ccb3847bb475 /tests/Core
parent9593f4d6f9bac5eee9527ac591a6f39dae11d109 (diff)
downloadnextcloud-server-4a509dfe8ec3287b513cc7d68342adc859870ee5.tar.gz
nextcloud-server-4a509dfe8ec3287b513cc7d68342adc859870ee5.zip
fix: phpunit
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'tests/Core')
-rw-r--r--tests/Core/Controller/OCSControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Core/Controller/OCSControllerTest.php b/tests/Core/Controller/OCSControllerTest.php
index 61ed4a50d62..a10455e482a 100644
--- a/tests/Core/Controller/OCSControllerTest.php
+++ b/tests/Core/Controller/OCSControllerTest.php
@@ -196,7 +196,7 @@ class OCSControllerTest extends TestCase {
->with('NotExistingUser')
->willReturn(null);
- $expected = new DataResponse(['User not found'], 404);
+ $expected = new DataResponse(['Account not found'], 404);
$this->assertEquals($expected, $this->controller->getIdentityProof('NotExistingUser'));
}