Skip to content

Commit

Permalink
Improve test to be able to assert non ordered list
Browse files Browse the repository at this point in the history
  • Loading branch information
killian-scalian committed Nov 21, 2024
1 parent 8b46107 commit e77828d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/antares/services/local_services/test_area.py
Original file line number Diff line number Diff line change
Expand Up @@ -1182,4 +1182,4 @@ def test_read_areas_local(self, local_read_study):
liste = local_area_service.read_areas()
list_area_name = ["at", "it", "fr"]
for index, area in enumerate(liste):
assert area.id == list_area_name[index]
assert area.id in list_area_name[index]

0 comments on commit e77828d

Please sign in to comment.