summaryrefslogtreecommitdiffstats
path: root/tests/lib/user/user.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-11-27 18:19:14 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-12-08 22:29:43 +0100
commita9e411e076ddbb5525ad44db4cad9efe2efd0fd2 (patch)
tree9cf256b1bc48a8fd93f4b78d5dde45012971f3ae /tests/lib/user/user.php
parent719008836d5254c6fa3975c5044d1c6a811bc124 (diff)
downloadnextcloud-server-a9e411e076ddbb5525ad44db4cad9efe2efd0fd2.tar.gz
nextcloud-server-a9e411e076ddbb5525ad44db4cad9efe2efd0fd2.zip
migrate \OC\AllConfig to \OCP\IConfig
Diffstat (limited to 'tests/lib/user/user.php')
-rw-r--r--tests/lib/user/user.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/lib/user/user.php b/tests/lib/user/user.php
index 85ade9ccaf1..a940d6eb627 100644
--- a/tests/lib/user/user.php
+++ b/tests/lib/user/user.php
@@ -9,7 +9,6 @@
namespace Test\User;
-use OC\AllConfig;
use OC\Hooks\PublicEmitter;
class User extends \Test\TestCase {
@@ -228,7 +227,7 @@ class User extends \Test\TestCase {
->method('implementsActions')
->will($this->returnValue(false));
- $allConfig = $this->getMockBuilder('\OC\AllConfig')
+ $allConfig = $this->getMockBuilder('\OCP\IConfig')
->disableOriginalConstructor()
->getMock();
$allConfig->expects($this->any())