summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-03-22 10:33:30 +0100
committerJoas Schilling <coding@schilljs.com>2017-03-22 10:44:13 +0100
commit5695a4ec9287775912b9df1b0038964543e257d1 (patch)
tree5d3e24a9fb1055b734cf30ee06600ac702137609 /tests
parent9208f6379cf74731e2cd2acb77cac0403bacd00e (diff)
downloadnextcloud-server-5695a4ec9287775912b9df1b0038964543e257d1.tar.gz
nextcloud-server-5695a4ec9287775912b9df1b0038964543e257d1.zip
Don't do a recursive search
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Authentication/TwoFactorAuth/ManagerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Authentication/TwoFactorAuth/ManagerTest.php b/tests/lib/Authentication/TwoFactorAuth/ManagerTest.php
index 1ea17f5d307..c031c39b5f2 100644
--- a/tests/lib/Authentication/TwoFactorAuth/ManagerTest.php
+++ b/tests/lib/Authentication/TwoFactorAuth/ManagerTest.php
@@ -68,7 +68,7 @@ class ManagerTest extends TestCase {
parent::setUp();
$this->user = $this->createMock(IUser::class);
- $this->appManager = $this->createMock('\OC\App\AppManager');
+ $this->appManager = $this->createMock(AppManager::class);
$this->session = $this->createMock(ISession::class);
$this->config = $this->createMock(IConfig::class);
$this->activityManager = $this->createMock(IManager::class);