From 8c0ad133cad7f3c5670070eb3d6f6e75ea5f993a Mon Sep 17 00:00:00 2001 From: hay-kot Date: Thu, 29 Apr 2021 18:00:52 -0800 Subject: [PATCH] black format --- tests/integration_tests/test_group_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/test_group_routes.py b/tests/integration_tests/test_group_routes.py index d06f20027..d13fed128 100644 --- a/tests/integration_tests/test_group_routes.py +++ b/tests/integration_tests/test_group_routes.py @@ -37,7 +37,7 @@ def test_update_group(api_client: TestClient, api_routes: AppRoutes, token): # Test Update response = api_client.put(api_routes.groups_id(2), json=new_data, headers=token) assert response.status_code == 200 - + # Validate Changes response = api_client.get(api_routes.groups, headers=token) all_groups = json.loads(response.text)