diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-07-24 20:42:55 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-07-24 20:42:55 +0200 |
commit | b930f32e89a0f890ebda449ab3d37952f9a4317e (patch) | |
tree | ac352343a3d1b12452db21f150f49c46f40dfc23 /apps/files_trashbin | |
parent | 5dc480a38c3755330cda99915a54f72d46df4885 (diff) | |
download | nextcloud-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.php | 2 |
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) |