Skip to content

Commit

Permalink
Fix assert
Browse files Browse the repository at this point in the history
  • Loading branch information
chadell committed Mar 20, 2023
1 parent fbc4474 commit fda6541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ def test_provider_get_maintenances(
for _ in range(len(expected_result)):
expected_result[0].update(partial_result_data)
else:
assert len(expected_result) == len(expected_result)
assert len(expected_result) == len(partial_result_data)
for i, _ in enumerate(partial_result_data):
expected_result[i].update(partial_result_data[i])

Expand Down

0 comments on commit fda6541

Please sign in to comment.