Skip to content

Commit

Permalink
feat(api): reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
salemsd committed Jan 9, 2025
1 parent 08b3848 commit 265939c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/antares/services/api_services/test_study_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,10 +633,11 @@ def test_delete_outputs(self):
mocker.delete(delete_url1, status_code=200)
mocker.delete(delete_url2, status_code=200)

mocker.get(outputs_url, json=[
{"name": "output1", "archived": False},
{"name": "output2", "archived": True}
], status_code=200)
mocker.get(
outputs_url,
json=[{"name": "output1", "archived": False}, {"name": "output2", "archived": True}],
status_code=200,
)
assert len(self.study.read_outputs()) == 2

self.study.delete_outputs()
Expand Down

0 comments on commit 265939c

Please sign in to comment.