From f028bee8ffdc59576dbeb951590f19abd904d793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20Rosales?= Date: Wed, 29 May 2024 08:05:30 -0600 Subject: [PATCH] chore: cleanup debugging code --- catalyst-gateway/tests/api_tests/api_tests/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/catalyst-gateway/tests/api_tests/api_tests/__init__.py b/catalyst-gateway/tests/api_tests/api_tests/__init__.py index 38cb7861b9..14d2437930 100644 --- a/catalyst-gateway/tests/api_tests/api_tests/__init__.py +++ b/catalyst-gateway/tests/api_tests/api_tests/__init__.py @@ -55,10 +55,7 @@ def get_staked_ada(address: str, network: str, slot_number: int): ) assert resp.status_code == 200 or resp.status_code == 404 if resp.status_code == 200: - print(f"code: {resp.status_code}, data: {resp.json()}") return resp.json() - elif resp.status_code == 404: - print(f"code: {resp.status_code}") def get_date_time_to_slot_number(network: str, date_time: datetime):