summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-12-01 12:41:48 +0100
committerRobin Appelman <icewind@owncloud.com>2016-01-20 16:30:22 +0100
commit89404299761c8f294e5cdbdc2f72c1b144be0ce0 (patch)
treee1c1febc07732da0e01486acadb979f50bd7ebf5 /tests
parentf986fb99f21f7d42bc4386b67638201afc339b8f (diff)
downloadnextcloud-server-89404299761c8f294e5cdbdc2f72c1b144be0ce0.tar.gz
nextcloud-server-89404299761c8f294e5cdbdc2f72c1b144be0ce0.zip
log duplicates
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/config/usermountcache.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/files/config/usermountcache.php b/tests/lib/files/config/usermountcache.php
index bee13adc8c8..3d147fbc7a9 100644
--- a/tests/lib/files/config/usermountcache.php
+++ b/tests/lib/files/config/usermountcache.php
@@ -13,6 +13,7 @@ use OC\Files\Storage\Temporary;
use OC\User\Manager;
use OCP\IDBConnection;
use OCP\IUserManager;
+use Test\NullLogger;
use Test\TestCase;
use Test\Util\User\Dummy;
@@ -42,7 +43,7 @@ class UserMountCache extends TestCase {
$userBackend->createUser('u1', '');
$userBackend->createUser('u2', '');
$this->userManager->registerBackend($userBackend);
- $this->cache = new \OC\Files\Config\UserMountCache($this->connection, $this->userManager);
+ $this->cache = new \OC\Files\Config\UserMountCache($this->connection, $this->userManager, new NullLogger());
}
public function tearDown() {