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:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-02-20 12:16:59 +0300
committerGitHub <noreply@github.com>2018-02-20 12:16:59 +0300
commitcf83eb5e77313c3a820cd1e808c83e0991b9d6a0 (patch)
tree13ced98982664ef5a60986915996363af1d90acd /tests/Core
parentc48332a14fe4e367e52b3fb2f53e4f58a47a7b66 (diff)
parentd18d323f214face6d2b6c3dae54a2dd3f086550b (diff)
Merge pull request #8336 from nextcloud/cleanup-unused-parameter
Cleanup unused parameter
Diffstat (limited to 'tests/Core')
-rw-r--r--tests/Core/Controller/AutoCompleteControllerTest.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/Core/Controller/AutoCompleteControllerTest.php b/tests/Core/Controller/AutoCompleteControllerTest.php
index 6279ba3283e..b1e9e6ba304 100644
--- a/tests/Core/Controller/AutoCompleteControllerTest.php
+++ b/tests/Core/Controller/AutoCompleteControllerTest.php
@@ -23,11 +23,9 @@
namespace Tests\Core\Controller;
-
use OC\Core\Controller\AutoCompleteController;
use OCP\Collaboration\AutoComplete\IManager;
use OCP\Collaboration\Collaborators\ISearch;
-use OCP\IConfig;
use OCP\IRequest;
use Test\TestCase;
@@ -36,8 +34,6 @@ class AutoCompleteControllerTest extends TestCase {
protected $collaboratorSearch;
/** @var IManager|\PHPUnit_Framework_MockObject_MockObject */
protected $autoCompleteManager;
- /** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
- protected $config;
/** @var AutoCompleteController */
protected $controller;
@@ -48,14 +44,12 @@ class AutoCompleteControllerTest extends TestCase {
$request = $this->createMock(IRequest::class);
$this->collaboratorSearch = $this->createMock(ISearch::class);
$this->autoCompleteManager = $this->createMock(IManager::class);
- $this->config = $this->createMock(IConfig::class);
$this->controller = new AutoCompleteController(
'core',
$request,
$this->collaboratorSearch,
- $this->autoCompleteManager,
- $this->config
+ $this->autoCompleteManager
);
}