@@ -123,7 +123,7 @@ def prediction_with_status(status: str) -> dict:
123123 router .route (method = "POST" , path = "/predictions" ).mock (
124124 return_value = httpx .Response (
125125 201 ,
126- json = prediction_with_status ("processing " ),
126+ json = prediction_with_status ("starting " ),
127127 )
128128 )
129129 router .route (method = "GET" , path = "/predictions/p1" ).mock (
@@ -212,7 +212,7 @@ def prediction_with_status(status: str) -> dict:
212212 router .route (method = "POST" , path = "/predictions" ).mock (
213213 return_value = httpx .Response (
214214 201 ,
215- json = prediction_with_status ("processing " ),
215+ json = prediction_with_status ("starting " ),
216216 )
217217 )
218218 router .route (method = "GET" , path = "/predictions/p1" ).mock (
@@ -454,7 +454,7 @@ def prediction_with_status(
454454 router .route (method = "POST" , path = "/predictions" ).mock (
455455 return_value = httpx .Response (
456456 201 ,
457- json = prediction_with_status ("processing " ),
457+ json = prediction_with_status ("starting " ),
458458 )
459459 )
460460 router .route (method = "GET" , path = "/predictions/p1" ).mock (
@@ -541,7 +541,7 @@ def prediction_with_status(
541541 router .route (method = "POST" , path = "/predictions" ).mock (
542542 return_value = httpx .Response (
543543 201 ,
544- json = prediction_with_status ("processing " ),
544+ json = prediction_with_status ("starting " ),
545545 )
546546 )
547547 router .route (method = "GET" , path = "/predictions/p1" ).mock (
0 commit comments