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_sharing/tests/Controller | |
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_sharing/tests/Controller')
-rw-r--r-- | apps/files_sharing/tests/Controller/ShareControllerTest.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/files_sharing/tests/Controller/ShareControllerTest.php b/apps/files_sharing/tests/Controller/ShareControllerTest.php index c5306cbc0ce..564977c09bc 100644 --- a/apps/files_sharing/tests/Controller/ShareControllerTest.php +++ b/apps/files_sharing/tests/Controller/ShareControllerTest.php @@ -288,7 +288,8 @@ class ShareControllerTest extends \Test\TestCase { 'previewImage' => null, 'previewURL' => 'downloadURL', 'note' => $note, - 'hideDownload' => false + 'hideDownload' => false, + 'showgridview' => true ); $csp = new \OCP\AppFramework\Http\ContentSecurityPolicy(); @@ -407,7 +408,8 @@ class ShareControllerTest extends \Test\TestCase { 'previewImage' => null, 'previewURL' => 'downloadURL', 'note' => $note, - 'hideDownload' => true + 'hideDownload' => true, + 'showgridview' => true ); $csp = new \OCP\AppFramework\Http\ContentSecurityPolicy(); |