Skip to content

Commit f6e4b6a

Browse files
committed
Prevent abstract test case warning
1 parent 20c0be0 commit f6e4b6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Integration/AbstractIntegrationTest.php renamed to tests/Integration/AbstractIntegrationTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Netsells\LaravelMutexMigrations\ServiceProvider;
66
use Orchestra\Testbench\TestCase;
77

8-
abstract class AbstractIntegrationTest extends TestCase
8+
abstract class AbstractIntegrationTestCase extends TestCase
99
{
1010
protected function getPackageProviders($app): array
1111
{

tests/Integration/CommandConcurrencyTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Illuminate\Contracts\Console\Kernel;
77
use Spatie\Fork\Fork;
88

9-
class CommandConcurrencyTest extends AbstractIntegrationTest
9+
class CommandConcurrencyTest extends AbstractIntegrationTestCase
1010
{
1111
public function testCommandCanBeCalledConcurrently(): void
1212
{

0 commit comments

Comments
 (0)