diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-06 15:52:49 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-06 16:05:34 +0100 |
commit | cac2f7f4d69bfeeb0a1fbb011631593116a99518 (patch) | |
tree | 8ed9e438849a9f93929217b11b53f5fa929313af /apps/files/tests | |
parent | 98edf3612c90aaec6fa18169feb60aede9e7ea45 (diff) | |
download | nextcloud-server-cac2f7f4d69bfeeb0a1fbb011631593116a99518.tar.gz nextcloud-server-cac2f7f4d69bfeeb0a1fbb011631593116a99518.zip |
Fix tests
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/tests')
-rw-r--r-- | apps/files/tests/Controller/ViewControllerTest.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php index f11a6faf863..35fc1e74c1a 100644 --- a/apps/files/tests/Controller/ViewControllerTest.php +++ b/apps/files/tests/Controller/ViewControllerTest.php @@ -131,12 +131,13 @@ class ViewControllerTest extends TestCase { [$this->user->getUID(), 'files', 'file_sorting', 'name', 'name'], [$this->user->getUID(), 'files', 'file_sorting_direction', 'asc', 'asc'], [$this->user->getUID(), 'files', 'show_hidden', false, false], + [$this->user->getUID(), 'files', 'show_grid', true, true], ])); - $this->config - ->expects($this->any()) - ->method('getAppValue') - ->will($this->returnArgument(2)); + $this->config + ->expects($this->any()) + ->method('getAppValue') + ->will($this->returnArgument(2)); $nav = new Template('files', 'appnavigation'); $nav->assign('usage_relative', 123); @@ -366,6 +367,8 @@ class ViewControllerTest extends TestCase { ], ], 'hiddenFields' => [], + 'showgridview' => true, + 'isIE' => false, ] ); $policy = new Http\ContentSecurityPolicy(); |