We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd73d77 commit f914185Copy full SHA for f914185
tests/integration/test_rest_routes.py
@@ -805,11 +805,7 @@ async def _after_scan_start_logic(
805
806
# wait backlogger to request to ewms
807
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"]
+ ewms_workflow_id = (await rc.request("GET", f"/scan/{scan_id}"))["ewms_workflow_id"]
813
assert RE_UUID4HEX.fullmatch(ewms_workflow_id)
814
# TODO: assert the EWMS request is sent (store in dummy ewms, and query here; or assert the call?)
815
0 commit comments