From ed96aee6699e914c5a2b745fe0c71ee6fe6ef0da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sun, 17 May 2020 16:38:53 +0200 Subject: [PATCH] Use correct path to impersonation migrations in test --- tests/TenantUserImpersonationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TenantUserImpersonationTest.php b/tests/TenantUserImpersonationTest.php index 81c9dc66..8937728e 100644 --- a/tests/TenantUserImpersonationTest.php +++ b/tests/TenantUserImpersonationTest.php @@ -37,7 +37,7 @@ class TenantUserImpersonationTest extends TestCase parent::setUp(); $this->artisan('migrate', [ - '--path' => __DIR__ . '/../assets/2020_05_15_000010_create_tenant_user_impersonation_tokens_table.php', + '--path' => __DIR__ . '/../assets/impersonation-migrations', '--realpath' => true, ])->assertExitCode(0);