diff --git a/tests/Feature/AssetServiceTest.php b/tests/Feature/AssetServiceTest.php index 83487832..96913bc4 100644 --- a/tests/Feature/AssetServiceTest.php +++ b/tests/Feature/AssetServiceTest.php @@ -44,7 +44,6 @@ public function test_tailwind_path_method_returns_false_if_null_in_config() $this->assertFalse($service->tailwindPath()); } - public function test_tailwind_path_method_returns_false_if_disabled_in_config() { $service = new AssetService(); @@ -87,5 +86,4 @@ public function test_cdn_path_constructor_uses_selected_version() Config::set('hyde.cdnHydeFrontVersionOverride', '1.2.3'); $this->assertStringContainsString('@1.2.3', $service->cdnPathConstructor('styles.css')); } - } diff --git a/tests/Feature/AuthorServiceTest.php b/tests/Feature/AuthorServiceTest.php index 706e20c7..55c2028a 100644 --- a/tests/Feature/AuthorServiceTest.php +++ b/tests/Feature/AuthorServiceTest.php @@ -12,7 +12,7 @@ */ class AuthorServiceTest extends TestCase { - protected function setUp(): void + protected function setUp(): void { parent::setUp(); // If an authors.yml file exists, back it up and remove it @@ -35,7 +35,6 @@ protected function tearDown(): void // Restore the original authors.yml file restore($path); - } public function test_publish_file_creates_file() @@ -107,6 +106,4 @@ public function test_find_method_returns_false_if_no_author_is_found() { $this->assertFalse(AuthorService::find('undefined_author')); } - - }