Skip to content

Commit

Permalink
Merge pull request #459 from inmanturbo/patch-2
Browse files Browse the repository at this point in the history
Fix unmatched double quote (typo)
  • Loading branch information
masterix21 authored Mar 28, 2023
2 parents e7dbf0d + 921fa46 commit cab0ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/Commands/TenantsArtisanCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit cab0ca6

Please sign in to comment.