aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-07-24 20:42:55 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2017-07-24 20:42:55 +0200
commitb930f32e89a0f890ebda449ab3d37952f9a4317e (patch)
treeac352343a3d1b12452db21f150f49c46f40dfc23 /apps/files_trashbin
parent5dc480a38c3755330cda99915a54f72d46df4885 (diff)
downloadnextcloud-server-b930f32e89a0f890ebda449ab3d37952f9a4317e.tar.gz
nextcloud-server-b930f32e89a0f890ebda449ab3d37952f9a4317e.zip
Remove legacy OC_User_Backend and OC_User_Interface
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/tests/Command/CleanUpTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/tests/Command/CleanUpTest.php b/apps/files_trashbin/tests/Command/CleanUpTest.php
index 6cf2c60948b..d20ce761bf6 100644
--- a/apps/files_trashbin/tests/Command/CleanUpTest.php
+++ b/apps/files_trashbin/tests/Command/CleanUpTest.php
@@ -182,7 +182,7 @@ class CleanUpTest extends TestCase {
->setMethods(['removeDeletedFiles'])
->setConstructorArgs([$this->rootFolder, $this->userManager, $this->dbConnection])
->getMock();
- $backend = $this->getMockBuilder('OC_User_Interface')
+ $backend = $this->getMockBuilder(\OCP\UserInterface::class)
->disableOriginalConstructor()->getMock();
$backend->expects($this->once())->method('getUsers')
->with('', 500, 0)