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>2019-11-25 15:46:45 +0300
committerJulius Härtl <jus@bitgrid.net>2019-11-27 23:06:14 +0300
commite18397284bb9d693f04c4483f4a05fe17fa6bcb2 (patch)
treeb4a9bb0efe502644f760bcd0fce03c172a91aa7b /tests/lib/Settings
parent0532f8116da1ed92b973c8842c4d18f084255820 (diff)
Use person icon for personal settings
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests/lib/Settings')
-rw-r--r--tests/lib/Settings/ManagerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/Settings/ManagerTest.php b/tests/lib/Settings/ManagerTest.php
index 8d1c9f768e8..3339c50c4d2 100644
--- a/tests/lib/Settings/ManagerTest.php
+++ b/tests/lib/Settings/ManagerTest.php
@@ -119,7 +119,7 @@ class ManagerTest extends TestCase {
$this->url->expects($this->exactly(3))
->method('imagePath')
->willReturnMap([
- ['core', 'actions/info.svg', '1'],
+ ['core', 'actions/user.svg', '1'],
['settings', 'password.svg', '2'],
['core', 'clients/phone.svg', '3'],
]);
@@ -178,7 +178,7 @@ class ManagerTest extends TestCase {
$this->url->expects($this->exactly(3))
->method('imagePath')
->willReturnMap([
- ['core', 'actions/info.svg', '1'],
+ ['core', 'actions/user.svg', '1'],
['settings', 'password.svg', '2'],
['core', 'clients/phone.svg', '3'],
]);
@@ -279,7 +279,7 @@ class ManagerTest extends TestCase {
$this->url->expects($this->exactly(9))
->method('imagePath')
->willReturnMap([
- ['core', 'actions/info.svg', '1'],
+ ['core', 'actions/user.svg', '1'],
['settings', 'password.svg', '2'],
['core', 'clients/phone.svg', '3'],
['settings', 'admin.svg', '0'],