Skip to content

Commit

Permalink
Remove debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
pablosnt committed Nov 8, 2024
1 parent db9d3d3 commit f911ac5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/backend/tests/cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,7 @@ def test_case(self, *args: Any, **kwargs: Any) -> None:
data=self.data,
format=self.format,
)
try:
self.tc.assertEqual(self.status_code, response.status_code)
except Exception as ex:
input(response.content)
raise ex
self.tc.assertEqual(self.status_code, response.status_code)
if self.expected is not None:
content = json.loads((response.content or "{}".encode()).decode())
if isinstance(self.expected, dict):
Expand Down

0 comments on commit f911ac5

Please sign in to comment.