diff --git a/tests/Authentication/AuthHelperTest.php b/tests/Authentication/AuthHelperTest.php index a0cd35505..b739158fd 100644 --- a/tests/Authentication/AuthHelperTest.php +++ b/tests/Authentication/AuthHelperTest.php @@ -28,11 +28,6 @@ final class AuthHelperTest extends TestCase protected $refresh = true; protected $namespace; - public static function setUpBeforeClass(): void - { - parent::setUpBeforeClass(); - } - protected function setUp(): void { parent::setUp(); diff --git a/tests/_support/DatabaseTestCase.php b/tests/_support/DatabaseTestCase.php index 61f5f8d25..c4c0fdc3b 100644 --- a/tests/_support/DatabaseTestCase.php +++ b/tests/_support/DatabaseTestCase.php @@ -38,9 +38,4 @@ protected function setUp(): void $authConfig = config('Auth'); $this->tables = $authConfig->tables; } - - protected function tearDown(): void - { - parent::tearDown(); - } }