aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/User/UserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/User/UserTest.php')
-rw-r--r--tests/lib/User/UserTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/User/UserTest.php b/tests/lib/User/UserTest.php
index adcb2adec58..8431f14f8a2 100644
--- a/tests/lib/User/UserTest.php
+++ b/tests/lib/User/UserTest.php
@@ -559,15 +559,15 @@ class UserTest extends TestCase {
->method('markProcessed');
}
- $this->overwriteService('NotificationManager', $notificationManager);
- $this->overwriteService('CommentsManager', $commentsManager);
+ $this->overwriteService(\OCP\Notification\IManager::class, $notificationManager);
+ $this->overwriteService(\OCP\Comments\ICommentsManager::class, $commentsManager);
$this->overwriteService(AllConfig::class, $config);
$this->assertSame($result, $user->delete());
$this->restoreService(AllConfig::class);
- $this->restoreService('CommentsManager');
- $this->restoreService('NotificationManager');
+ $this->restoreService(\OCP\Comments\ICommentsManager::class);
+ $this->restoreService(\OCP\Notification\IManager::class);
$this->assertEquals($expectedHooks, $hooksCalled);
}