diff --git a/tests/Pdf/PdfGenerationTest.php b/tests/Pdf/PdfGenerationTest.php index c3bbba6bb6a2..e995824f4999 100644 --- a/tests/Pdf/PdfGenerationTest.php +++ b/tests/Pdf/PdfGenerationTest.php @@ -2,6 +2,7 @@ namespace Tests\Pdf; +use Illuminate\Support\Facades\Storage; use Spatie\Browsershot\Browsershot; use Tests\TestCase; @@ -29,5 +30,7 @@ class PdfGenerationTest extends TestCase $this->assertTrue(file_exists($pdf)); + unlink($pdf); + } }