Skip to content

Commit

Permalink
test: remove strict arg from zip
Browse files Browse the repository at this point in the history
  • Loading branch information
jrriehl committed Dec 11, 2024
1 parent 4271b1b commit 5199d88
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,12 @@

class TestConfig(unittest.TestCase):
def test_parse_agentverse_config(self):
for agent, expected_config, endpoints, index in zip(
for agent, expected_config, endpoints, index in zip( # noqa
agents,
expected_configs,
expected_endpoints,
range(len(agents)),
strict=False,
): # noqa
):
self.assertEqual(
agent.agentverse.model_dump(),
expected_config,
Expand Down

0 comments on commit 5199d88

Please sign in to comment.