diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-08-25 14:41:26 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-08-25 18:40:28 +0200 |
commit | d0d6a92054a156b6c932234f5081fa9feabb6acd (patch) | |
tree | d95d69e7828c06e0de431fbe499191034f845d7c /apps/files/tests | |
parent | 7b8bd8188e96f36ea2bc10d43446cfed89f4c9d1 (diff) | |
download | nextcloud-server-d0d6a92054a156b6c932234f5081fa9feabb6acd.tar.gz nextcloud-server-d0d6a92054a156b6c932234f5081fa9feabb6acd.zip |
Fix sorting of entries in Files sidebar
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/tests')
-rw-r--r-- | apps/files/tests/Controller/ViewControllerTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php index db86e0037ef..e0965d43143 100644 --- a/apps/files/tests/Controller/ViewControllerTest.php +++ b/apps/files/tests/Controller/ViewControllerTest.php @@ -167,7 +167,7 @@ class ViewControllerTest extends TestCase { 'id' => 'sharingin', 'appname' => 'files_sharing', 'script' => 'list.php', - 'order' => 10, + 'order' => 15, 'name' => \OC::$server->getL10N('files_sharing')->t('Shared with you'), 'active' => false, 'icon' => '', @@ -177,7 +177,7 @@ class ViewControllerTest extends TestCase { 'id' => 'sharingout', 'appname' => 'files_sharing', 'script' => 'list.php', - 'order' => 15, + 'order' => 16, 'name' => \OC::$server->getL10N('files_sharing')->t('Shared with others'), 'active' => false, 'icon' => '', @@ -187,7 +187,7 @@ class ViewControllerTest extends TestCase { 'id' => 'sharinglinks', 'appname' => 'files_sharing', 'script' => 'list.php', - 'order' => 20, + 'order' => 17, 'name' => \OC::$server->getL10N('files_sharing')->t('Shared by link', []), 'active' => false, 'icon' => '', |