Skip to content

Commit f914185

Browse files
committed
tests: misc logic updates - 5
1 parent bd73d77 commit f914185

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/integration/test_rest_routes.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -805,11 +805,7 @@ async def _after_scan_start_logic(
805805

806806
# wait backlogger to request to ewms
807807
await asyncio.sleep(int(os.environ["SCAN_BACKLOG_RUNNER_SHORT_DELAY"]) * 2) # extra
808-
ewms_workflow_id = (
809-
await rc.request(
810-
"GET", f"/scan/{scan_id}", {"manifest_projection": ["ewms_workflow_id"]}
811-
)
812-
)["ewms_workflow_id"]
808+
ewms_workflow_id = (await rc.request("GET", f"/scan/{scan_id}"))["ewms_workflow_id"]
813809
assert RE_UUID4HEX.fullmatch(ewms_workflow_id)
814810
# TODO: assert the EWMS request is sent (store in dummy ewms, and query here; or assert the call?)
815811

0 commit comments

Comments
 (0)