Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Dec 26, 2023
1 parent 7a06730 commit 97ecd53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/PdfTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@

it('can accept the paper format', function () {
Pdf::view('test')
->paperFormat(PaperFormat::A3)
->paperFormat(PaperFormat::A5)
->save($this->targetPath);

expect($this->targetPath)
->toHaveDimensions(842, 1190)
->toHaveDimensions(419, 595)
->toContainText('This is a test');
});

Expand Down

0 comments on commit 97ecd53

Please sign in to comment.