diff options
author | Louis <6653109+artonge@users.noreply.github.com> | 2023-02-16 14:01:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-16 14:01:19 +0100 |
commit | 98b998a2de2a0a013028fadec2e3618852442ce9 (patch) | |
tree | f1a3bb7fc9f9fa2f18bdc448d99e9439516b193f /tests/lib | |
parent | bc91dca7035c06e32131d23565f30535b8850bb0 (diff) | |
parent | b38d2daede9f6079040412d0a0531ac549433582 (diff) | |
download | nextcloud-server-98b998a2de2a0a013028fadec2e3618852442ce9.tar.gz nextcloud-server-98b998a2de2a0a013028fadec2e3618852442ce9.zip |
Merge pull request #36735 from nextcloud/fix/32635/fix-vcf-contacts
fix the contacts-menu vcf-contact avatars
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php b/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php index a038058069e..ccb888a6c3d 100644 --- a/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php +++ b/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php @@ -142,7 +142,7 @@ class ContactsStoreTest extends TestCase { $user = $this->createMock(IUser::class); $this->urlGenerator->expects($this->any()) ->method('linkToRouteAbsolute') - ->with('core.avatar.getAvatar', $this->anything()) + ->with('core.GuestAvatar.getAvatar', $this->anything()) ->willReturn('https://urlToNcAvatar.test'); $this->contactsManager->expects($this->once()) ->method('search') |