From 7529c46a0416f42019f8ca7c6307d45e8980c240 Mon Sep 17 00:00:00 2001 From: joeyagreco Date: Sat, 14 Sep 2024 10:01:40 -0400 Subject: [PATCH] test --- test/integration/test_api/test_league.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/integration/test_api/test_league.py b/test/integration/test_api/test_league.py index e39ec64..feb480e 100644 --- a/test/integration/test_api/test_league.py +++ b/test/integration/test_api/test_league.py @@ -27,5 +27,6 @@ def test_get_rosters(self): # this response will constantly change, so just assert some general things self.assertIsInstance(response, list) self.assertEqual(6, len(response)) + # test for item in response: self.assertIsInstance(item, dict)