summaryrefslogtreecommitdiffstats
path: root/tests/lib/Avatar/GuestAvatarTest.php
diff options
context:
space:
mode:
authorMichael Weimann <mail@michael-weimann.eu>2019-01-29 19:52:19 +0100
committerMorris Jobke <hey@morrisjobke.de>2019-02-07 14:23:16 +0100
commit2a8118e459d05e3dce2bd5421cca33859e7e9f02 (patch)
treecc0fb3c2dc7fb626087bbdf88ab7c3824de55684 /tests/lib/Avatar/GuestAvatarTest.php
parentbf1253cb49a4931244a6bbde4dfa44bf084f4377 (diff)
downloadnextcloud-server-2a8118e459d05e3dce2bd5421cca33859e7e9f02.tar.gz
nextcloud-server-2a8118e459d05e3dce2bd5421cca33859e7e9f02.zip
Switch guest avatars to PNG
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'tests/lib/Avatar/GuestAvatarTest.php')
-rw-r--r--tests/lib/Avatar/GuestAvatarTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Avatar/GuestAvatarTest.php b/tests/lib/Avatar/GuestAvatarTest.php
index 8762d063f5d..0d13655133b 100644
--- a/tests/lib/Avatar/GuestAvatarTest.php
+++ b/tests/lib/Avatar/GuestAvatarTest.php
@@ -64,7 +64,7 @@ class GuestAvatarTest extends TestCase {
$avatar = $this->guestAvatar->getFile(32);
self::assertInstanceOf(InMemoryFile::class, $avatar);
$expectedFile = file_get_contents(
- __DIR__ . '/../../data/guest_avatar_einstein_32.svg'
+ __DIR__ . '/../../data/guest_avatar_einstein_32.png'
);
self::assertEquals(trim($expectedFile), trim($avatar->getContent()));
}