diff --git a/apis_core/apis_entities/tests.py b/apis_core/apis_entities/tests.py index f326fa9..cc1a1ac 100644 --- a/apis_core/apis_entities/tests.py +++ b/apis_core/apis_entities/tests.py @@ -290,12 +290,8 @@ def test_020_api_list_view(self): r = client.get(value) self.assertTrue(r.status_code, 200) if key.startswith("relation"): - try: - r = client.get(f"{value}?format=json%2Bnet") - self.assertTrue(r.status_code, 200) - except Exception as e: - print(value, e) - continue + r = client.get(f"{value}?format=json%2Bnet") + self.assertTrue(r.status_code, 200) def test_021_api_detail_view(self): item = Person.objects.last()