We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e7dbf0d + 921fa46 commit cab0ca6Copy full SHA for cab0ca6
tests/Feature/Commands/TenantsArtisanCommandTest.php
@@ -30,7 +30,7 @@
30
});
31
32
it('can migrate a specific tenant', function () {
33
- $this->artisan('tenants:artisan migrate --tenant=' . $this->anotherTenant->id . '"')->assertExitCode(0);
+ $this->artisan('tenants:artisan migrate --tenant="' . $this->anotherTenant->id . '"')->assertExitCode(0);
34
35
assertTenantDatabaseDoesNotHaveTable($this->tenant, 'migrations');
36
assertTenantDatabaseHasTable($this->anotherTenant, 'migrations');
0 commit comments