Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-05-24 16:06:28 +0300
committerJulius Härtl <jus@bitgrid.net>2018-05-24 16:06:28 +0300
commite1af2f47662cc1655bfbbdf741df5a2d2532015f (patch)
tree58e62894c6514940c572e7935a1d7032de17c806 /tests/lib/Settings
parentfd4a7bf72a0c8a69325b1d63e6983021ac6651f8 (diff)
Rename sync clients section to mobile & desktop
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests/lib/Settings')
-rw-r--r--tests/lib/Settings/ManagerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Settings/ManagerTest.php b/tests/lib/Settings/ManagerTest.php
index d51a57598b3..a80aae526ce 100644
--- a/tests/lib/Settings/ManagerTest.php
+++ b/tests/lib/Settings/ManagerTest.php
@@ -150,13 +150,13 @@ class ManagerTest extends TestCase {
->willReturnMap([
['core', 'actions/info.svg', '1'],
['settings', 'password.svg', '2'],
- ['settings', 'change.svg', '3'],
+ ['core', 'clients/phone.svg', '3'],
]);
$this->assertEquals([
0 => [new Section('personal-info', 'Personal info', 0, '1')],
5 => [new Section('security', 'Security', 0, '2')],
- 15 => [new Section('sync-clients', 'Sync clients', 0, '3')],
+ 15 => [new Section('sync-clients', 'Mobile & desktop', 0, '3')],
55 => [\OC::$server->query(\OCA\WorkflowEngine\Settings\Section::class)],
], $this->manager->getPersonalSections());
}