From fb14603e17bb8b365d2985dfb9ec781b2e6d1584 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Wed, 6 Oct 2021 15:06:53 -0600 Subject: [PATCH] love me some magic numbers --- tests/Integration/Api/Application/Users/UserControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integration/Api/Application/Users/UserControllerTest.php b/tests/Integration/Api/Application/Users/UserControllerTest.php index e2dbe97d4..83033fc7e 100644 --- a/tests/Integration/Api/Application/Users/UserControllerTest.php +++ b/tests/Integration/Api/Application/Users/UserControllerTest.php @@ -194,7 +194,7 @@ class UserControllerTest extends ApplicationApiIntegrationTestCase ]); $response->assertStatus(Response::HTTP_CREATED); - $response->assertJsonCount(3); + $response->assertJsonCount(2); $response->assertJsonStructure([ 'object', 'attributes' => ['id', 'external_id', 'uuid', 'username', 'email', 'language', 'admin_role_id', 'root_admin', '2fa', 'created_at', 'updated_at'],