@@ -209,7 +209,6 @@ def test_path_params_list_handoff_attachments(self, client: OzAPI) -> None:
209209 def test_method_submit_followup (self , client : OzAPI ) -> None :
210210 run = client .agent .runs .submit_followup (
211211 run_id = "runId" ,
212- message = "message" ,
213212 )
214213 assert_matches_type (object , run , path = ["response" ])
215214
@@ -228,7 +227,6 @@ def test_method_submit_followup_with_all_params(self, client: OzAPI) -> None:
228227 def test_raw_response_submit_followup (self , client : OzAPI ) -> None :
229228 response = client .agent .runs .with_raw_response .submit_followup (
230229 run_id = "runId" ,
231- message = "message" ,
232230 )
233231
234232 assert response .is_closed is True
@@ -241,7 +239,6 @@ def test_raw_response_submit_followup(self, client: OzAPI) -> None:
241239 def test_streaming_response_submit_followup (self , client : OzAPI ) -> None :
242240 with client .agent .runs .with_streaming_response .submit_followup (
243241 run_id = "runId" ,
244- message = "message" ,
245242 ) as response :
246243 assert not response .is_closed
247244 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -257,7 +254,6 @@ def test_path_params_submit_followup(self, client: OzAPI) -> None:
257254 with pytest .raises (ValueError , match = r"Expected a non-empty value for `run_id` but received ''" ):
258255 client .agent .runs .with_raw_response .submit_followup (
259256 run_id = "" ,
260- message = "message" ,
261257 )
262258
263259
@@ -453,7 +449,6 @@ async def test_path_params_list_handoff_attachments(self, async_client: AsyncOzA
453449 async def test_method_submit_followup (self , async_client : AsyncOzAPI ) -> None :
454450 run = await async_client .agent .runs .submit_followup (
455451 run_id = "runId" ,
456- message = "message" ,
457452 )
458453 assert_matches_type (object , run , path = ["response" ])
459454
@@ -472,7 +467,6 @@ async def test_method_submit_followup_with_all_params(self, async_client: AsyncO
472467 async def test_raw_response_submit_followup (self , async_client : AsyncOzAPI ) -> None :
473468 response = await async_client .agent .runs .with_raw_response .submit_followup (
474469 run_id = "runId" ,
475- message = "message" ,
476470 )
477471
478472 assert response .is_closed is True
@@ -485,7 +479,6 @@ async def test_raw_response_submit_followup(self, async_client: AsyncOzAPI) -> N
485479 async def test_streaming_response_submit_followup (self , async_client : AsyncOzAPI ) -> None :
486480 async with async_client .agent .runs .with_streaming_response .submit_followup (
487481 run_id = "runId" ,
488- message = "message" ,
489482 ) as response :
490483 assert not response .is_closed
491484 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -501,5 +494,4 @@ async def test_path_params_submit_followup(self, async_client: AsyncOzAPI) -> No
501494 with pytest .raises (ValueError , match = r"Expected a non-empty value for `run_id` but received ''" ):
502495 await async_client .agent .runs .with_raw_response .submit_followup (
503496 run_id = "" ,
504- message = "message" ,
505497 )
0 commit comments