From 9f4dcbc40f7d9cf4f948a7ef32d9cfc349bdd2ea Mon Sep 17 00:00:00 2001 From: Dylan Harbour Date: Wed, 4 Nov 2020 15:35:37 +0200 Subject: [PATCH] Styleci --- tests/CommandsTest.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/CommandsTest.php b/tests/CommandsTest.php index abdaf243..d7da0cab 100644 --- a/tests/CommandsTest.php +++ b/tests/CommandsTest.php @@ -195,12 +195,11 @@ class CommandsTest extends TestCase public function run_command_with_array_of_tenants_works() { $tenantId1 = Tenant::create()->getTenantKey(); - $tenantId2= Tenant::create()->getTenantKey(); + $tenantId2 = Tenant::create()->getTenantKey(); Artisan::call('tenants:migrate-fresh'); $this->artisan("tenants:run foo --tenants=$tenantId1 --tenants=$tenantId2 --argument='a=foo' --option='b=bar' --option='c=xyz'") - ->expectsOutput("Tenant: " . $tenantId1) - ->expectsOutput("Tenant: " . $tenantId2); + ->expectsOutput('Tenant: ' . $tenantId1) + ->expectsOutput('Tenant: ' . $tenantId2); } - }