1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 15:14:04 +00:00
This commit is contained in:
Dylan Harbour 2020-11-04 15:35:37 +02:00
parent 9e2cb75351
commit 9f4dcbc40f

View file

@ -199,8 +199,7 @@ class CommandsTest extends TestCase
Artisan::call('tenants:migrate-fresh'); Artisan::call('tenants:migrate-fresh');
$this->artisan("tenants:run foo --tenants=$tenantId1 --tenants=$tenantId2 --argument='a=foo' --option='b=bar' --option='c=xyz'") $this->artisan("tenants:run foo --tenants=$tenantId1 --tenants=$tenantId2 --argument='a=foo' --option='b=bar' --option='c=xyz'")
->expectsOutput("Tenant: " . $tenantId1) ->expectsOutput('Tenant: ' . $tenantId1)
->expectsOutput("Tenant: " . $tenantId2); ->expectsOutput('Tenant: ' . $tenantId2);
} }
} }