diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2019-01-29 19:52:19 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-02-07 14:23:16 +0100 |
commit | 2a8118e459d05e3dce2bd5421cca33859e7e9f02 (patch) | |
tree | cc0fb3c2dc7fb626087bbdf88ab7c3824de55684 /tests/lib/Avatar/GuestAvatarTest.php | |
parent | bf1253cb49a4931244a6bbde4dfa44bf084f4377 (diff) | |
download | nextcloud-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.php | 2 |
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())); } |