summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-11-28 08:35:33 +0100
committerGitHub <noreply@github.com>2019-11-28 08:35:33 +0100
commit125be68311a319f2b839e5aa4ea29cd642cd1e00 (patch)
treefcb8924c54dabae714d2eea9c3eb6e40122078b2 /tests
parent563f9153a2cbed53ad7a7e116e3d8a8e357252c1 (diff)
parente18397284bb9d693f04c4483f4a05fe17fa6bcb2 (diff)
downloadnextcloud-server-125be68311a319f2b839e5aa4ea29cd642cd1e00.tar.gz
nextcloud-server-125be68311a319f2b839e5aa4ea29cd642cd1e00.zip
Merge pull request #18141 from nextcloud/design/noid/personal-info-icon
Use person icon for personal settings
Diffstat (limited to 'tests')
-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'],