Skip to content

Commit

Permalink
final fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Sep 29, 2024
1 parent 6909323 commit 236be55
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ def test_deploy_neuroconv_batch_job(self):
self.efs_id = efs_volume["FileSystemId"]

# Check normal job completion
assert job["jobName"] == f"{job_name}_neuroconv_deployment"
expected_job_name = f"{job_name}_neuroconv_deployment"
assert job["jobName"] == expected_job_name
assert "neuroconv_batch_queue" in job["jobQueue"]
assert "fs-" in job["jobDefinition"]
assert job["status"] == "SUCCEEDED"
Expand All @@ -181,7 +182,7 @@ def test_deploy_neuroconv_batch_job(self):
assert table_item_response["ResponseMetadata"]["HTTPStatusCode"] == 200

table_item = table_item_response["Item"]
assert table_item["job_name"] == job_name
assert table_item["job_name"] == expected_job_name
assert table_item["job_id"] == job_id
assert table_item["status"] == "Job submitted..."

Expand Down

0 comments on commit 236be55

Please sign in to comment.