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 448dcb3 commit 56f75a6Copy full SHA for 56f75a6
tests/integration/test_rest_routes.py
@@ -826,10 +826,8 @@ async def _after_scan_start_logic(
826
# wait backlogger to request to ewms
827
assert int(os.environ["SCAN_BACKLOG_RUNNER_DELAY"])
828
await asyncio.sleep(int(os.environ["SCAN_BACKLOG_RUNNER_DELAY"]) * 5) # extra
829
- ewms_workflow_id = (await rc.request("GET", f"/scan/{scan_id}/manifest"))[
830
- "ewms_workflow_id"
831
- ]
832
- assert RE_UUID4HEX.fullmatch(ewms_workflow_id)
+ manifest = await rc.request("GET", f"/scan/{scan_id}/manifest")
+ assert RE_UUID4HEX.fullmatch(manifest["ewms_workflow_id"])
833
834
#
835
# INITIAL UPDATES
0 commit comments