From 818ffd2ba3f856918ad8e858e67589bc5c459d29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Thu, 24 Oct 2019 17:02:36 +0200 Subject: [PATCH] $this->call -> $this->artisan --- docs/source/v2/application-testing.blade.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/v2/application-testing.blade.md b/docs/source/v2/application-testing.blade.md index 3e3b993..e0e28c0 100644 --- a/docs/source/v2/application-testing.blade.md +++ b/docs/source/v2/application-testing.blade.md @@ -25,7 +25,7 @@ protected function setUp(): void { parent::setUp(); - $this->call('migrate'); + $this->artisan('migrate'); tenancy()->create('test.localhost'); tenancy()->init('test.localhost'); @@ -45,4 +45,4 @@ protected function setUp(): void tenant()->create('test.localhost'); tenancy()->init('test.localhost'); } -``` \ No newline at end of file +```