From 5e582e6df1c1e0cbe9b02fae75ee7ec21f18f250 Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Sat, 14 Nov 2020 22:52:34 +0800 Subject: [PATCH] Update test name --- tests/CrudApiMakeCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CrudApiMakeCommandTest.php b/tests/CrudApiMakeCommandTest.php index de33b99..f2f2e19 100644 --- a/tests/CrudApiMakeCommandTest.php +++ b/tests/CrudApiMakeCommandTest.php @@ -59,7 +59,7 @@ class CrudApiMakeCommandTest extends TestCase } /** @test */ - public function it_not_generate_api_crud_files_if_namespaced_model_exists() + public function it_still_generates_api_crud_files_even_if_namespaced_model_exists() { $this->artisan('make:model', ['name' => 'Entities/Projects/Problem', '--no-interaction' => true]); $this->artisan('make:crud-api', ['name' => 'Entities/Projects/Problem', '--no-interaction' => true]);