diff --git a/tests/Feature/Commands/TenantsArtisanCommandTest.php b/tests/Feature/Commands/TenantsArtisanCommandTest.php index 7191ce0..10b34c1 100644 --- a/tests/Feature/Commands/TenantsArtisanCommandTest.php +++ b/tests/Feature/Commands/TenantsArtisanCommandTest.php @@ -30,7 +30,7 @@ }); it('can migrate a specific tenant', function () { - $this->artisan('tenants:artisan migrate --tenant=' . $this->anotherTenant->id . '"')->assertExitCode(0); + $this->artisan('tenants:artisan migrate --tenant="' . $this->anotherTenant->id . '"')->assertExitCode(0); assertTenantDatabaseDoesNotHaveTable($this->tenant, 'migrations'); assertTenantDatabaseHasTable($this->anotherTenant, 'migrations');