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 Kesselberg <mail@danielkesselberg.de>2020-02-03 12:31:23 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2020-02-03 12:31:23 +0300
commit29fede5fe56c93fee4cffe5569d3c070e2423349 (patch)
tree322f53cbcb0f5b5372c431980a01d3f902a19059 /apps/settings/tests
parentaf8ad9628585273b32534d151d348eb66a0ffd3d (diff)
Update test to pass l10n instead of factory
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/settings/tests')
-rw-r--r--apps/settings/tests/Settings/Admin/SharingTest.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/settings/tests/Settings/Admin/SharingTest.php b/apps/settings/tests/Settings/Admin/SharingTest.php
index d662c1864db..5006f90cbd1 100644
--- a/apps/settings/tests/Settings/Admin/SharingTest.php
+++ b/apps/settings/tests/Settings/Admin/SharingTest.php
@@ -33,7 +33,6 @@ 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;
@@ -52,15 +51,11 @@ class SharingTest extends TestCase {
$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,
- $l10Factory,
+ $this->l10n,
$this->shareManager
);
}