From 7ba20ceea47679b607e50689fd01c545c0ecf643 Mon Sep 17 00:00:00 2001 From: salemsd Date: Thu, 9 Jan 2025 09:06:21 +0100 Subject: [PATCH] feat(api): ci test --- tests/antares/services/api_services/test_study_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/antares/services/api_services/test_study_api.py b/tests/antares/services/api_services/test_study_api.py index 37c3d70..5034bd6 100644 --- a/tests/antares/services/api_services/test_study_api.py +++ b/tests/antares/services/api_services/test_study_api.py @@ -643,7 +643,7 @@ def test_delete_outputs(self): self.study.delete_outputs() assert len(self.study.get_outputs()) == 0 - #failing (nothing to delete) + # failing (nothing to delete) error_message = "Outputs deletion failed" mocker.get(outputs_url, json={"description": error_message}, status_code=404) with pytest.raises(OutputsRetrievalError, match=error_message):