Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Dec 29, 2023
1 parent 9e1e0b3 commit f584627
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/PdfTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
assertMatchesPdfSnapshot($this->targetPath);
})->skipOnLinux();

it('can save a pdf to a disk', function() {
Storage::fake('local');
it('can save a pdf to a disk', function () {
Storage::fake('local');

Pdf::view('test')
->disk('local')
->save('test.pdf');
Pdf::view('test')
->disk('local')
->save('test.pdf');

Storage::disk('local')->assertExists('test.pdf');
Storage::disk('local')->assertExists('test.pdf');
});

it('can accept html', function () {
Expand Down

0 comments on commit f584627

Please sign in to comment.