From efb9d107cf461b3c86904aa7e783f054d532af68 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 5 Jul 2024 03:22:03 +0100 Subject: [PATCH] Removed debugging Signed-off-by: snipe --- tests/Feature/Categories/Api/UpdateCategoryTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/Feature/Categories/Api/UpdateCategoryTest.php b/tests/Feature/Categories/Api/UpdateCategoryTest.php index 5c67ea76e..1a784c117 100644 --- a/tests/Feature/Categories/Api/UpdateCategoryTest.php +++ b/tests/Feature/Categories/Api/UpdateCategoryTest.php @@ -44,8 +44,7 @@ class UpdateCategoriesTest extends TestCase ->assertStatusMessageIs('error') ->assertStatus(200) ->json(); - - //dd($response); + $category->refresh(); $this->assertNotEquals('Test Category', $category->name, 'Name was not updated'); $this->assertNotEquals('Test EULA', $category->eula_text, 'EULA was not updated');