From e9ef02b408f224445cfdb5dba692bbef46c95b78 Mon Sep 17 00:00:00 2001 From: Gyubong Lee Date: Thu, 7 Mar 2024 05:53:22 +0000 Subject: [PATCH] Remove useless change --- tests/manager/models/test_container_registries.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/manager/models/test_container_registries.py b/tests/manager/models/test_container_registries.py index 1bb3511f71..b6791d156a 100644 --- a/tests/manager/models/test_container_registries.py +++ b/tests/manager/models/test_container_registries.py @@ -76,11 +76,7 @@ async def test_create_container_registry(client: Client, database_engine: Extend }, } - try: - response = await client.execute_async(query, variables=variables, context_value=context) - print("response!", response) - except Exception as e: - print(e) + response = await client.execute_async(query, variables=variables, context_value=context) container_registry = response["data"]["create_container_registry"]["container_registry"]