diff options
author | Joas Schilling <coding@schilljs.com> | 2023-02-02 13:57:58 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-02-03 09:10:35 +0100 |
commit | 8b817701566823c48e1d74d5a1997719e2ae2698 (patch) | |
tree | 2f21b619fec6749c66ef4d65c15d078beea79893 /tests/lib | |
parent | 5e1a714121933ad803e3d38fe196ab35276a4d70 (diff) | |
download | nextcloud-server-8b817701566823c48e1d74d5a1997719e2ae2698.tar.gz nextcloud-server-8b817701566823c48e1d74d5a1997719e2ae2698.zip |
Skip failing avatar test with PHP 8.0
The font is placed one pixel off
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/Avatar/GuestAvatarTest.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/Avatar/GuestAvatarTest.php b/tests/lib/Avatar/GuestAvatarTest.php index b8e6d8ae2e8..6be3be3f7eb 100644 --- a/tests/lib/Avatar/GuestAvatarTest.php +++ b/tests/lib/Avatar/GuestAvatarTest.php @@ -62,6 +62,10 @@ class GuestAvatarTest extends TestCase { * @return void */ public function testGet() { + if (PHP_VERSION_ID >= 80000) { + $this->markTestSkipped('Character placement is off 1 pixel on PHP 8.0 so skipping the binary comparison'); + } + $avatar = $this->guestAvatar->getFile(32); self::assertInstanceOf(InMemoryFile::class, $avatar); $expectedFile = file_get_contents( |