Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Dec 24, 2020
1 parent 45404a6 commit 13a9f51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"require-dev": {
"phpunit/phpunit": "~8.5.0",
"dompdf/dompdf": "^0.8",
"dompdf/dompdf": "^0.8.6",
"mpdf/mpdf": "^8.0.4",
"tecnickcom/tcpdf": "^6.3"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Pdf/Engine/DomPdfEngineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function testOutput()
$Pdf->html('<foo>bar</foo>');

$output = $Pdf->engine()->output();
$this->assertStringStartsWith('%PDF-1.3', $output);
$this->assertStringStartsWith('%PDF-1.7', $output);
$this->assertStringEndsWith("%%EOF\n", $output);
}

Expand Down

0 comments on commit 13a9f51

Please sign in to comment.