diff options
author | Joas Schilling <coding@schilljs.com> | 2019-03-21 12:42:35 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-03-21 12:42:35 +0100 |
commit | 494d737f7eb1c0c6a5407d73c15acd31ac7a87c1 (patch) | |
tree | 5e59f29347c96ee8d03c48831644a46b1a8a0fae /tests/Settings | |
parent | 0155edc195ed278a2a4d06c15295433ae0ae8445 (diff) | |
download | nextcloud-server-494d737f7eb1c0c6a5407d73c15acd31ac7a87c1.tar.gz nextcloud-server-494d737f7eb1c0c6a5407d73c15acd31ac7a87c1.zip |
Remove unused member "util"
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/Settings')
-rw-r--r-- | tests/Settings/Controller/CheckSetupControllerTest.php | 10 |
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, |