diff --git a/tests/integration/test_rest_routes.py b/tests/integration/test_rest_routes.py index c03246bf..4749515a 100644 --- a/tests/integration/test_rest_routes.py +++ b/tests/integration/test_rest_routes.py @@ -761,7 +761,7 @@ def get_tms_args( async def _is_scan_complete(rc: RestClient, scan_id: str) -> bool: - resp = await rc.request("GET", f"/scans/{scan_id}/status") + resp = await rc.request("GET", f"/scan/{scan_id}/status") pprint.pprint(resp) return resp["scan_complete"]