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:
authorJoas Schilling <coding@schilljs.com>2019-03-21 14:42:35 +0300
committerJoas Schilling <coding@schilljs.com>2019-03-21 14:42:35 +0300
commit494d737f7eb1c0c6a5407d73c15acd31ac7a87c1 (patch)
tree5e59f29347c96ee8d03c48831644a46b1a8a0fae /tests
parent0155edc195ed278a2a4d06c15295433ae0ae8445 (diff)
Remove unused member "util"
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Settings/Controller/CheckSetupControllerTest.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/Settings/Controller/CheckSetupControllerTest.php b/tests/Settings/Controller/CheckSetupControllerTest.php
index 521cadfcd3b..173c0a1f85f 100644
--- a/tests/Settings/Controller/CheckSetupControllerTest.php
+++ b/tests/Settings/Controller/CheckSetupControllerTest.php
@@ -37,7 +37,6 @@ use OCP\IL10N;
use OCP\ILogger;
use OCP\IRequest;
use OCP\IURLGenerator;
-use OC_Util;
use OCP\Lock\ILockingProvider;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Http\Message\ResponseInterface;
@@ -62,8 +61,6 @@ class CheckSetupControllerTest extends TestCase {
private $clientService;
/** @var IURLGenerator | \PHPUnit_Framework_MockObject_MockObject */
private $urlGenerator;
- /** @var OC_Util */
- private $util;
/** @var IL10N | \PHPUnit_Framework_MockObject_MockObject */
private $l10n;
/** @var ILogger */
@@ -99,8 +96,6 @@ class CheckSetupControllerTest extends TestCase {
->disableOriginalConstructor()->getMock();
$this->clientService = $this->getMockBuilder(IClientService::class)
->disableOriginalConstructor()->getMock();
- $this->util = $this->getMockBuilder('\OC_Util')
- ->disableOriginalConstructor()->getMock();
$this->urlGenerator = $this->getMockBuilder(IURLGenerator::class)
->disableOriginalConstructor()->getMock();
$this->l10n = $this->getMockBuilder(IL10N::class)
@@ -130,7 +125,6 @@ class CheckSetupControllerTest extends TestCase {
$this->config,
$this->clientService,
$this->urlGenerator,
- $this->util,
$this->l10n,
$this->checker,
$this->logger,
@@ -590,7 +584,6 @@ class CheckSetupControllerTest extends TestCase {
$this->config,
$this->clientService,
$this->urlGenerator,
- $this->util,
$this->l10n,
$this->checker,
$this->logger,
@@ -624,7 +617,6 @@ class CheckSetupControllerTest extends TestCase {
$this->config,
$this->clientService,
$this->urlGenerator,
- $this->util,
$this->l10n,
$this->checker,
$this->logger,
@@ -1393,7 +1385,6 @@ Array
$this->config,
$this->clientService,
$this->urlGenerator,
- $this->util,
$this->l10n,
$this->checker,
$this->logger,
@@ -1442,7 +1433,6 @@ Array
$this->config,
$this->clientService,
$this->urlGenerator,
- $this->util,
$this->l10n,
$this->checker,
$this->logger,