Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Feb 4, 2025
1 parent 248546f commit cd59034
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/wps_restapi/test_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1919,8 +1919,8 @@ def test_job_update_response_contents(self):
test_job = self.job_store.fetch_by_id(new_job.id)
assert test_job.subscribers == {
"callbacks": {
StatusCategory.SUCCESS: "https://example.com/success",
StatusCategory.FAILED: "https://example.com/failed",
StatusCategory.SUCCESS.value.lower(): "https://example.com/success",
StatusCategory.FAILED.value.lower(): "https://example.com/failed",
}
}

Expand Down

0 comments on commit cd59034

Please sign in to comment.