Skip to content

Commit 921fa46

Browse files
authored
Fix unmatched double quote
1 parent e7dbf0d commit 921fa46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Feature/Commands/TenantsArtisanCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
});
3131

3232
it('can migrate a specific tenant', function () {
33-
$this->artisan('tenants:artisan migrate --tenant=' . $this->anotherTenant->id . '"')->assertExitCode(0);
33+
$this->artisan('tenants:artisan migrate --tenant="' . $this->anotherTenant->id . '"')->assertExitCode(0);
3434

3535
assertTenantDatabaseDoesNotHaveTable($this->tenant, 'migrations');
3636
assertTenantDatabaseHasTable($this->anotherTenant, 'migrations');

0 commit comments

Comments
 (0)