🔧 GitHub actions action out

This commit is contained in:
codemasher
2020-06-03 22:10:51 +02:00
parent a0bc423543
commit 289d58be9b
+2 -2
View File
@@ -79,10 +79,10 @@ class QRFpdfTest extends QROutputTestAbstract{
public function testRenderImage(string $type):void{
$this->options->outputType = $type;
$this::assertStringContainsString(
$this::assertSame(
// substr() to avoid CreationDate
substr(file_get_contents(__DIR__.'/samples/'.$type), 0, 2560),
(new QRCode($this->options))->render('test')
substr((new QRCode($this->options))->render('test'), 0, 2560)
);
}