codemasher 5 лет назад
Родитель
Сommit
7e0bca309b
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      tests/Output/QRFpdfTest.php

+ 2 - 2
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]);