@@ -129,7 +129,7 @@ def test_streaming_response_create_overload_2(self, client: RunwayML) -> None:
129129 assert cast (Any , response .is_closed ) is True
130130
131131 @parametrize
132- def test_method_create_overload_4 (self , client : RunwayML ) -> None :
132+ def test_method_create_overload_3 (self , client : RunwayML ) -> None :
133133 text_to_image = client .text_to_image .create (
134134 model = "gemini_2.5_flash" ,
135135 prompt_text = "x" ,
@@ -138,7 +138,7 @@ def test_method_create_overload_4(self, client: RunwayML) -> None:
138138 assert_matches_type (TextToImageCreateResponse , text_to_image , path = ["response" ])
139139
140140 @parametrize
141- def test_method_create_with_all_params_overload_4 (self , client : RunwayML ) -> None :
141+ def test_method_create_with_all_params_overload_3 (self , client : RunwayML ) -> None :
142142 text_to_image = client .text_to_image .create (
143143 model = "gemini_2.5_flash" ,
144144 prompt_text = "x" ,
@@ -153,7 +153,7 @@ def test_method_create_with_all_params_overload_4(self, client: RunwayML) -> Non
153153 assert_matches_type (TextToImageCreateResponse , text_to_image , path = ["response" ])
154154
155155 @parametrize
156- def test_raw_response_create_overload_4 (self , client : RunwayML ) -> None :
156+ def test_raw_response_create_overload_3 (self , client : RunwayML ) -> None :
157157 response = client .text_to_image .with_raw_response .create (
158158 model = "gemini_2.5_flash" ,
159159 prompt_text = "x" ,
@@ -166,7 +166,7 @@ def test_raw_response_create_overload_4(self, client: RunwayML) -> None:
166166 assert_matches_type (TextToImageCreateResponse , text_to_image , path = ["response" ])
167167
168168 @parametrize
169- def test_streaming_response_create_overload_4 (self , client : RunwayML ) -> None :
169+ def test_streaming_response_create_overload_3 (self , client : RunwayML ) -> None :
170170 with client .text_to_image .with_streaming_response .create (
171171 model = "gemini_2.5_flash" ,
172172 prompt_text = "x" ,
@@ -298,7 +298,7 @@ async def test_streaming_response_create_overload_2(self, async_client: AsyncRun
298298 assert cast (Any , response .is_closed ) is True
299299
300300 @parametrize
301- async def test_method_create_overload_4 (self , async_client : AsyncRunwayML ) -> None :
301+ async def test_method_create_overload_3 (self , async_client : AsyncRunwayML ) -> None :
302302 text_to_image = await async_client .text_to_image .create (
303303 model = "gemini_2.5_flash" ,
304304 prompt_text = "x" ,
@@ -307,7 +307,7 @@ async def test_method_create_overload_4(self, async_client: AsyncRunwayML) -> No
307307 assert_matches_type (TextToImageCreateResponse , text_to_image , path = ["response" ])
308308
309309 @parametrize
310- async def test_method_create_with_all_params_overload_4 (self , async_client : AsyncRunwayML ) -> None :
310+ async def test_method_create_with_all_params_overload_3 (self , async_client : AsyncRunwayML ) -> None :
311311 text_to_image = await async_client .text_to_image .create (
312312 model = "gemini_2.5_flash" ,
313313 prompt_text = "x" ,
@@ -322,7 +322,7 @@ async def test_method_create_with_all_params_overload_4(self, async_client: Asyn
322322 assert_matches_type (TextToImageCreateResponse , text_to_image , path = ["response" ])
323323
324324 @parametrize
325- async def test_raw_response_create_overload_4 (self , async_client : AsyncRunwayML ) -> None :
325+ async def test_raw_response_create_overload_3 (self , async_client : AsyncRunwayML ) -> None :
326326 response = await async_client .text_to_image .with_raw_response .create (
327327 model = "gemini_2.5_flash" ,
328328 prompt_text = "x" ,
@@ -335,7 +335,7 @@ async def test_raw_response_create_overload_4(self, async_client: AsyncRunwayML)
335335 assert_matches_type (TextToImageCreateResponse , text_to_image , path = ["response" ])
336336
337337 @parametrize
338- async def test_streaming_response_create_overload_4 (self , async_client : AsyncRunwayML ) -> None :
338+ async def test_streaming_response_create_overload_3 (self , async_client : AsyncRunwayML ) -> None :
339339 async with async_client .text_to_image .with_streaming_response .create (
340340 model = "gemini_2.5_flash" ,
341341 prompt_text = "x" ,
0 commit comments