From dda3e36ad6d04e0c6bbcffbe48ed1338c21f2ecf Mon Sep 17 00:00:00 2001 From: lukinovec Date: Tue, 20 Sep 2022 16:11:54 +0200 Subject: [PATCH] Change test name --- tests/CommandsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CommandsTest.php b/tests/CommandsTest.php index 3d26af55..e860fbcc 100644 --- a/tests/CommandsTest.php +++ b/tests/CommandsTest.php @@ -94,7 +94,7 @@ test('migrate command loads schema state', function () { expect(Schema::hasTable('users'))->toBeTrue(); }); -test('migrate command does not throw exception if tenant does not have a database and skip-failing is passed', function() { +test('migrate command only throws exceptions if skip-failing is not passed', function() { Tenant::create(); Event::forget(TenantCreated::class);