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_versions/tests | |
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_versions/tests')
-rw-r--r-- | apps/files_versions/tests/Command/CleanupTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_versions/tests/Command/CleanupTest.php b/apps/files_versions/tests/Command/CleanupTest.php index d716bc1ddbb..fe6c9caf25b 100644 --- a/apps/files_versions/tests/Command/CleanupTest.php +++ b/apps/files_versions/tests/Command/CleanupTest.php @@ -140,7 +140,7 @@ class CleanupTest extends TestCase { ->setConstructorArgs([$this->rootFolder, $this->userManager]) ->getMock(); - $backend = $this->getMockBuilder('OC_User_Interface') + $backend = $this->getMockBuilder(\OCP\UserInterface::class) ->disableOriginalConstructor()->getMock(); $backend->expects($this->once())->method('getUsers') ->with('', 500, 0) |