Skip to content

Commit

Permalink
fix test with modified $id -> $schema
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Oct 13, 2023
1 parent 5c98c9a commit 7413e61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/test_docker_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ def test_deployed_process_schemas(self):
# process already deployed by setUpClass
body = self.get_deploy_body()
process = self.process_store.fetch_by_id(self.process_id)
assert "$id" in process.package
assert process.package["$id"] == CWL_SCHEMA_URL
assert "$schema" in process.package
assert process.package["$schema"] == CWL_SCHEMA_URL

payload = process.payload
payload.pop("$schema", None)
Expand Down

0 comments on commit 7413e61

Please sign in to comment.