aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/tests/Controller/UsersControllerTest.php
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-09-26 09:22:26 +0200
committerprovokateurin <kate@provokateurin.de>2024-09-26 09:22:26 +0200
commitb9115da4f27ff2cc013da4ec88754c1175dd5216 (patch)
treecffbf11e3742d744f46ef95577d0b05c208e19eb /apps/settings/tests/Controller/UsersControllerTest.php
parent9a220989dd1cd3a5792b8fc385ee1d7b1bcc7fb8 (diff)
downloadnextcloud-server-refactor/apps/php55-features.tar.gz
nextcloud-server-refactor/apps/php55-features.zip
refactor(apps): Use PHP 5.5 featuresrefactor/apps/php55-features
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/settings/tests/Controller/UsersControllerTest.php')
-rw-r--r--apps/settings/tests/Controller/UsersControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/tests/Controller/UsersControllerTest.php b/apps/settings/tests/Controller/UsersControllerTest.php
index 80eb252f988..0cb87a7fac9 100644
--- a/apps/settings/tests/Controller/UsersControllerTest.php
+++ b/apps/settings/tests/Controller/UsersControllerTest.php
@@ -918,7 +918,7 @@ class UsersControllerTest extends \Test\TestCase {
if ($onlyVerificationCode === false) {
$this->accountManager->expects($this->once())->method('updateAccount')->with($userAccount)->willReturnArgument(1);
$this->jobList->expects($this->once())->method('add')
- ->with('OCA\Settings\BackgroundJobs\VerifyUserData',
+ ->with(\OCA\Settings\BackgroundJobs\VerifyUserData::class,
[
'verificationCode' => $code,
'data' => $dataBefore[$type]['value'],