From 110ee815ff096d0cbd95d092fb316fa01e1ae772 Mon Sep 17 00:00:00 2001 From: kemalsu <51797192+kemalsu@users.noreply.github.com> Date: Wed, 27 Aug 2025 12:25:48 -0400 Subject: [PATCH] Update test_store.py --- test_store.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test_store.py b/test_store.py index 186bd79..220684b 100644 --- a/test_store.py +++ b/test_store.py @@ -13,4 +13,7 @@ 4) Validate the response message "Order and pet status updated successfully" ''' def test_patch_order_by_id(): + response = api_helpers.get_api_data(test_endpoint, params) + assert response.status_code == 200 + assert "Order and pet status updated successfully" in response.text pass