Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2020-12-14 22:14:51 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2020-12-14 22:14:51 +0300
commit90ac35dae1abccc7916b9d64c5971202274b24b1 (patch)
treee05b173174fc1af8482e170f8fe9a4ce3bbb7bc2
parent6e43ce76bd807da9cf91782b795e459b6d901d34 (diff)
fixup! Make possible to define custom avatar types
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r--tests/lib/Avatar/AvatarManagerTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/lib/Avatar/AvatarManagerTest.php b/tests/lib/Avatar/AvatarManagerTest.php
index 5a061cd10e9..4796df0fe4f 100644
--- a/tests/lib/Avatar/AvatarManagerTest.php
+++ b/tests/lib/Avatar/AvatarManagerTest.php
@@ -32,6 +32,7 @@ use OCP\Files\SimpleFS\ISimpleFolder;
use OCP\IConfig;
use OCP\IL10N;
use OCP\ILogger;
+use OCP\IServerContainer;
use OCP\IUser;
/**
@@ -65,7 +66,8 @@ class AvatarManagerTest extends \Test\TestCase {
$this->appData,
$this->l10n,
$this->logger,
- $this->config
+ $this->config,
+ $this->createMock(IServerContainer::class)
);
}