Skip to content

Commit

Permalink
fix(api): fixed minor errors in unit / integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdiwahada committed Jan 8, 2025
1 parent b696fff commit aec9a4d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/antares/services/api_services/test_link_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
from antares.craft.exceptions.exceptions import (
LinkDownloadError,
LinkPropertiesUpdateError,
LinksRetrievalError,
LinkUiUpdateError,
LinkUploadError, LinksRetrievalError,
LinkUploadError,
)
from antares.craft.model.area import Area
from antares.craft.model.commons import FilterOption
Expand Down Expand Up @@ -339,6 +340,6 @@ def test_read_links_fail(self):

with pytest.raises(
LinksRetrievalError,
match=f"Could not retrieve links from study {self.study_id} : {self.antares_web_description_msg}"
match=f"Could not retrieve links from study {self.study_id} : {self.antares_web_description_msg}",
):
self.study.read_links()
self.study.read_links()

0 comments on commit aec9a4d

Please sign in to comment.