diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-06-26 09:30:40 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-07-05 12:43:57 +0200 |
commit | a1a845693ba5cf1622b60962f73d211a0807a390 (patch) | |
tree | 248126c0568c30920f1f8bf1c05757422a9afada /apps/files/tests | |
parent | ced8789f5c96cf491ce4774cc3f419081000ae0b (diff) | |
download | nextcloud-server-a1a845693ba5cf1622b60962f73d211a0807a390.tar.gz nextcloud-server-a1a845693ba5cf1622b60962f73d211a0807a390.zip |
Fix tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files/tests')
-rw-r--r-- | apps/files/tests/Controller/ViewControllerTest.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php index a739e26bd90..eae627fd6a4 100644 --- a/apps/files/tests/Controller/ViewControllerTest.php +++ b/apps/files/tests/Controller/ViewControllerTest.php @@ -207,6 +207,17 @@ class ViewControllerTest extends TestCase { 'classes' => '', ], [ + 'id' => 'deletedshares', + 'appname' => 'files_sharing', + 'script' => 'list.php', + 'order' => 18, + 'name' => \OC::$server->getL10N('files_sharing')->t('Deleted shares'), + 'active' => false, + 'icon' => '', + 'type' => 'link', + 'classes' => '', + ], + [ 'id' => 'systemtagsfilter', 'appname' => 'systemtags', 'script' => 'list.php', @@ -270,6 +281,10 @@ class ViewControllerTest extends TestCase { 'content' => null, ], [ + 'id' => 'deletedshares', + 'content' => null, + ], + [ 'id' => 'systemtagsfilter', 'content' => null, ], |