diff options
Diffstat (limited to 'apps/files/tests/Controller/ViewControllerTest.php')
-rw-r--r-- | apps/files/tests/Controller/ViewControllerTest.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php index fd6ec5aaa3c..f07af2a2fe5 100644 --- a/apps/files/tests/Controller/ViewControllerTest.php +++ b/apps/files/tests/Controller/ViewControllerTest.php @@ -288,6 +288,13 @@ class ViewControllerTest extends TestCase { 'order' => 19, 'name' => \OC::$server->getL10N('files_sharing')->t('Deleted shares'), ], + [ + 'id' => 'pendingshares', + 'appname' => 'files_sharing', + 'script' => 'list.php', + 'order' => 19, + 'name' => \OC::$server->getL10N('files_sharing')->t('Pending shares'), + ], ], 'active' => false, 'icon' => '', @@ -348,6 +355,10 @@ class ViewControllerTest extends TestCase { 'id' => 'deletedshares', 'content' => null, ], + 'pendingshares' => [ + 'id' => 'pendingshares', + 'content' => null + ], 'shareoverview' => [ 'id' => 'shareoverview', 'content' => null, |