Skip to content

Commit

Permalink
feat(api): adding read_study method, unit testing and integration tes…
Browse files Browse the repository at this point in the history
…ting of the method
  • Loading branch information
mehdiwahada committed Dec 4, 2024
1 parent 95b08fc commit 78c93c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_web_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def test_creation_lifecycle(self, antares_web: AntaresWebDesktop):
assert list(expected_area_fr.get_thermals()) == list(actual_area_fr.get_thermals())
assert list(expected_area_fr.get_renewables()) == list(actual_area_fr.get_renewables())
assert list(expected_area_fr.get_st_storages()) == list(actual_area_fr.get_st_storages())
assert list(study.get_settings()) == list(actual_study.get_settings())
assert study.get_settings() == actual_study.get_settings()

# test short term storage creation with properties
st_storage_name = "wind_onshore"
Expand Down

0 comments on commit 78c93c1

Please sign in to comment.