From 9b514876a41a09bea8d81098a808bb057dc8bf4f Mon Sep 17 00:00:00 2001 From: kemalsu <51797192+kemalsu@users.noreply.github.com> Date: Wed, 27 Aug 2025 12:17:56 -0400 Subject: [PATCH] Update test_pet.py --- test_pet.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test_pet.py b/test_pet.py index e215678..04c16cf 100644 --- a/test_pet.py +++ b/test_pet.py @@ -34,7 +34,7 @@ def test_find_by_status_200(status): } response = api_helpers.get_api_data(test_endpoint, params) - # TODO... + assert response.status_code == 200 ''' TODO: Finish this test by... @@ -42,5 +42,5 @@ def test_find_by_status_200(status): 2) Parameterizing the test for any edge cases ''' def test_get_by_id_404(): - # TODO... - pass \ No newline at end of file + assert response.status_code == 404 + pass