Skip to content

Commit cab0ca6

Browse files
authored
Merge pull request #459 from inmanturbo/patch-2
Fix unmatched double quote (typo)
2 parents e7dbf0d + 921fa46 commit cab0ca6

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)