Fix tests

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2018-11-06 15:52:49 +01:00
parent 98edf3612c
commit cac2f7f4d6
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
2 changed files with 11 additions and 6 deletions

View File

@ -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();

View File

@ -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();