From 99e5f19a2b52a4836049797724f17bfd496cc18e Mon Sep 17 00:00:00 2001 From: freekmurze Date: Sun, 20 Feb 2022 19:01:03 +0000 Subject: [PATCH] Fix styling --- tests/VisitCommandTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/VisitCommandTest.php b/tests/VisitCommandTest.php index 412d0ee..6788da9 100644 --- a/tests/VisitCommandTest.php +++ b/tests/VisitCommandTest.php @@ -2,15 +2,14 @@ use Illuminate\Support\Facades\Artisan; use Illuminate\Support\Facades\Route; -use function Pest\Laravel\artisan; -beforeEach(function() { +beforeEach(function () { Route::get('/', function () { return 'get result'; }); }); -it('can visit a page', function() { +it('can visit a page', function () { Artisan::call('visit /'); expect(true)->toBe(true);