From e9e10f377fa9f63db6a6c8a7fecd4f8c11ea63dc Mon Sep 17 00:00:00 2001 From: ric-evans Date: Fri, 17 Jan 2025 13:43:46 -0600 Subject: [PATCH] tests: fix path --- tests/integration/test_rest_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]