From d1e8e8d515ebe88cc192a1e989cda5f15742c594 Mon Sep 17 00:00:00 2001 From: sunaoka Date: Thu, 12 Dec 2024 17:55:53 +0900 Subject: [PATCH] Update tests --- tests/FacadeMakeTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/FacadeMakeTest.php b/tests/FacadeMakeTest.php index 7910ce4..c3a315e 100644 --- a/tests/FacadeMakeTest.php +++ b/tests/FacadeMakeTest.php @@ -2,11 +2,13 @@ namespace Sunaoka\LaravelFacadeGenerator\Tests; +use Illuminate\Filesystem\Filesystem; + class FacadeMakeTest extends TestCase { protected function tearDown(): void { - \File::delete([ + (new Filesystem)->delete([ app_path('Facades/FacadeMakeTest.php'), app_path('Services/FacadeMakeTestService.php'), app_path('Providers/FacadeMakeTestServiceProvider.php'),