From 67ef566537aa59c79f5d3ac95c594b9d01118dea Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sun, 17 Jun 2018 09:42:53 +0100 Subject: [PATCH] Fix tests --- tests/Functional/ArtisanCommandTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Functional/ArtisanCommandTest.php b/tests/Functional/ArtisanCommandTest.php index fe72a6a2..8fb11304 100644 --- a/tests/Functional/ArtisanCommandTest.php +++ b/tests/Functional/ArtisanCommandTest.php @@ -27,17 +27,17 @@ class ArtisanCommandTest extends AbstractTestCase public function testAppInstall() { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:install'); + $this->assertSame(0, $this->app->make(Kernel::class)->call('app:install')); } public function testAppReset() { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:reset'); + $this->assertSame(0, $this->app->make(Kernel::class)->call('app:reset')); } public function testAppUpdate() { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:update'); + $this->assertSame(0, $this->app->make(Kernel::class)->call('app:update')); } public function testMigrations()