diff --git a/app/tests/api/api_v1/test_test_run_executions.py b/app/tests/api/api_v1/test_test_run_executions.py index ea798a19..b4d829e2 100644 --- a/app/tests/api/api_v1/test_test_run_executions.py +++ b/app/tests/api/api_v1/test_test_run_executions.py @@ -807,7 +807,7 @@ async def test_test_run_execution_start_no_pics( f"{settings.API_V1_STR}/test_run_executions/{test_run_execution.id}/start", ) - # Assert 200 OK and that test run data is returned + # Assert 422 UNPROCESSABLE_ENTITY and a detail error message assert response.status_code == HTTPStatus.UNPROCESSABLE_ENTITY content = response.json() assert isinstance(content, dict)