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
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-03-22 11:46:41 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-03-25 11:10:54 +0300
commita7fb71f908f081d941981a62ed80e8bf58c15c07 (patch)
treefeb2aedb45725350a7bc813e42b1edec6865c2bd /tests
parent4785faed0bbc1da9c6d1daabbcf8398fba2c3fb1 (diff)
Fetch proper translations
Fixes #14793 This is caused by the mess we have with OC\Settings mapping to settings and lib/private/Settings. Anyway this is the quick fix. Moving stuff around for 17 seems better. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Settings/Admin/SharingTest.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/lib/Settings/Admin/SharingTest.php b/tests/lib/Settings/Admin/SharingTest.php
index c97f22e54b6..c40ff98a869 100644
--- a/tests/lib/Settings/Admin/SharingTest.php
+++ b/tests/lib/Settings/Admin/SharingTest.php
@@ -28,6 +28,7 @@ use OCP\AppFramework\Http\TemplateResponse;
use OCP\Constants;
use OCP\IConfig;
use OCP\IL10N;
+use OCP\L10N\IFactory;
use OCP\Share\IManager;
use Test\TestCase;
@@ -45,11 +46,16 @@ class SharingTest extends TestCase {
parent::setUp();
$this->config = $this->getMockBuilder(IConfig::class)->getMock();
$this->l10n = $this->getMockBuilder(IL10N::class)->getMock();
+
+ $l10Factory = $this->createMock(IFactory::class);
+ $l10Factory->method('get')
+ ->willReturn($this->l10n);
+
$this->shareManager = $this->getMockBuilder(IManager::class)->getMock();
$this->admin = new Sharing(
$this->config,
- $this->l10n,
+ $l10Factory,
$this->shareManager
);
}