From 7e0bca309bd37ff0ccbdd5fa38cb1eb183821a10 Mon Sep 17 00:00:00 2001 From: codemasher Date: Wed, 3 Jun 2020 22:33:19 +0200 Subject: [PATCH] :wrench: sup GH? --- tests/Output/QRFpdfTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Output/QRFpdfTest.php b/tests/Output/QRFpdfTest.php index c3bd06898..22fd37a4f 100644 --- a/tests/Output/QRFpdfTest.php +++ b/tests/Output/QRFpdfTest.php @@ -80,8 +80,8 @@ class QRFpdfTest extends QROutputTestAbstract{ $this->options->outputType = $type; // substr() to avoid CreationDate - $expected = substr(file_get_contents(__DIR__.'/samples/'.$type), 0, 2560); - $actual = substr((new QRCode($this->options))->render('test'), 0, 2560); + $expected = substr(file_get_contents(__DIR__.'/samples/'.$type), 0, 2500); + $actual = substr((new QRCode($this->options))->render('test'), 0, 2500); \var_dump([$expected, $actual]);