aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/tests/Controller
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-02-14 17:13:09 -0600
committerMorris Jobke <hey@morrisjobke.de>2017-02-14 17:36:23 -0600
commitb954c2f1860aac2542df0c284e6ecfc68b6e3608 (patch)
tree5434ee7d841066076b236ed1c9d00eda93e3e3aa /apps/files/tests/Controller
parent9f74858537377d1aae6cf8b7530c9faa987cf8ff (diff)
downloadnextcloud-server-b954c2f1860aac2542df0c284e6ecfc68b6e3608.tar.gz
nextcloud-server-b954c2f1860aac2542df0c284e6ecfc68b6e3608.zip
Fix app name of files app
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files/tests/Controller')
-rw-r--r--apps/files/tests/Controller/ViewControllerTest.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php
index 25445567ea9..1d8c2956551 100644
--- a/apps/files/tests/Controller/ViewControllerTest.php
+++ b/apps/files/tests/Controller/ViewControllerTest.php
@@ -33,8 +33,6 @@ use OCP\Template;
use Test\TestCase;
use OCP\IRequest;
use OCP\IURLGenerator;
-use OCP\AppFramework\Http\RedirectResponse;
-use OCP\INavigationManager;
use OCP\IL10N;
use OCP\IConfig;
use OCP\IUserSession;
@@ -51,8 +49,6 @@ class ViewControllerTest extends TestCase {
private $request;
/** @var IURLGenerator|\PHPUnit_Framework_MockObject_MockObject */
private $urlGenerator;
- /** @var INavigationManager */
- private $navigationManager;
/** @var IL10N */
private $l10n;
/** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
@@ -74,7 +70,6 @@ class ViewControllerTest extends TestCase {
parent::setUp();
$this->request = $this->getMockBuilder('\OCP\IRequest')->getMock();
$this->urlGenerator = $this->getMockBuilder('\OCP\IURLGenerator')->getMock();
- $this->navigationManager = $this->getMockBuilder('\OCP\INavigationManager')->getMock();
$this->l10n = $this->getMockBuilder('\OCP\IL10N')->getMock();
$this->config = $this->getMockBuilder('\OCP\IConfig')->getMock();
$this->eventDispatcher = $this->getMockBuilder('\Symfony\Component\EventDispatcher\EventDispatcherInterface')->getMock();
@@ -93,7 +88,6 @@ class ViewControllerTest extends TestCase {
'files',
$this->request,
$this->urlGenerator,
- $this->navigationManager,
$this->l10n,
$this->config,
$this->eventDispatcher,