@@ -21,10 +21,10 @@ class TestRoutes:
2121 @parametrize
2222 def test_method_create (self , client : Asktable ) -> None :
2323 route = client .extapis .routes .create (
24- path_extapi_id = "extapi_id" ,
24+ extapi_id_1 = "extapi_id" ,
2525 id = "id" ,
2626 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
27- body_extapi_id = "extapi_id" ,
27+ extapi_id_2 = "extapi_id" ,
2828 method = "GET" ,
2929 name = "name" ,
3030 path = "/resource" ,
@@ -35,10 +35,10 @@ def test_method_create(self, client: Asktable) -> None:
3535 @parametrize
3636 def test_method_create_with_all_params (self , client : Asktable ) -> None :
3737 route = client .extapis .routes .create (
38- path_extapi_id = "extapi_id" ,
38+ extapi_id_1 = "extapi_id" ,
3939 id = "id" ,
4040 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
41- body_extapi_id = "extapi_id" ,
41+ extapi_id_2 = "extapi_id" ,
4242 method = "GET" ,
4343 name = "name" ,
4444 path = "/resource" ,
@@ -53,10 +53,10 @@ def test_method_create_with_all_params(self, client: Asktable) -> None:
5353 @parametrize
5454 def test_raw_response_create (self , client : Asktable ) -> None :
5555 response = client .extapis .routes .with_raw_response .create (
56- path_extapi_id = "extapi_id" ,
56+ extapi_id_1 = "extapi_id" ,
5757 id = "id" ,
5858 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
59- body_extapi_id = "extapi_id" ,
59+ extapi_id_2 = "extapi_id" ,
6060 method = "GET" ,
6161 name = "name" ,
6262 path = "/resource" ,
@@ -71,10 +71,10 @@ def test_raw_response_create(self, client: Asktable) -> None:
7171 @parametrize
7272 def test_streaming_response_create (self , client : Asktable ) -> None :
7373 with client .extapis .routes .with_streaming_response .create (
74- path_extapi_id = "extapi_id" ,
74+ extapi_id_1 = "extapi_id" ,
7575 id = "id" ,
7676 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
77- body_extapi_id = "extapi_id" ,
77+ extapi_id_2 = "extapi_id" ,
7878 method = "GET" ,
7979 name = "name" ,
8080 path = "/resource" ,
@@ -90,12 +90,12 @@ def test_streaming_response_create(self, client: Asktable) -> None:
9090
9191 @parametrize
9292 def test_path_params_create (self , client : Asktable ) -> None :
93- with pytest .raises (ValueError , match = r"Expected a non-empty value for `path_extapi_id ` but received ''" ):
93+ with pytest .raises (ValueError , match = r"Expected a non-empty value for `extapi_id_1 ` but received ''" ):
9494 client .extapis .routes .with_raw_response .create (
95- path_extapi_id = "" ,
95+ extapi_id_1 = "" ,
9696 id = "id" ,
9797 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
98- body_extapi_id = "" ,
98+ extapi_id_2 = "" ,
9999 method = "GET" ,
100100 name = "name" ,
101101 path = "/resource" ,
@@ -305,10 +305,10 @@ class TestAsyncRoutes:
305305 @parametrize
306306 async def test_method_create (self , async_client : AsyncAsktable ) -> None :
307307 route = await async_client .extapis .routes .create (
308- path_extapi_id = "extapi_id" ,
308+ extapi_id_1 = "extapi_id" ,
309309 id = "id" ,
310310 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
311- body_extapi_id = "extapi_id" ,
311+ extapi_id_2 = "extapi_id" ,
312312 method = "GET" ,
313313 name = "name" ,
314314 path = "/resource" ,
@@ -319,10 +319,10 @@ async def test_method_create(self, async_client: AsyncAsktable) -> None:
319319 @parametrize
320320 async def test_method_create_with_all_params (self , async_client : AsyncAsktable ) -> None :
321321 route = await async_client .extapis .routes .create (
322- path_extapi_id = "extapi_id" ,
322+ extapi_id_1 = "extapi_id" ,
323323 id = "id" ,
324324 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
325- body_extapi_id = "extapi_id" ,
325+ extapi_id_2 = "extapi_id" ,
326326 method = "GET" ,
327327 name = "name" ,
328328 path = "/resource" ,
@@ -337,10 +337,10 @@ async def test_method_create_with_all_params(self, async_client: AsyncAsktable)
337337 @parametrize
338338 async def test_raw_response_create (self , async_client : AsyncAsktable ) -> None :
339339 response = await async_client .extapis .routes .with_raw_response .create (
340- path_extapi_id = "extapi_id" ,
340+ extapi_id_1 = "extapi_id" ,
341341 id = "id" ,
342342 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
343- body_extapi_id = "extapi_id" ,
343+ extapi_id_2 = "extapi_id" ,
344344 method = "GET" ,
345345 name = "name" ,
346346 path = "/resource" ,
@@ -355,10 +355,10 @@ async def test_raw_response_create(self, async_client: AsyncAsktable) -> None:
355355 @parametrize
356356 async def test_streaming_response_create (self , async_client : AsyncAsktable ) -> None :
357357 async with async_client .extapis .routes .with_streaming_response .create (
358- path_extapi_id = "extapi_id" ,
358+ extapi_id_1 = "extapi_id" ,
359359 id = "id" ,
360360 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
361- body_extapi_id = "extapi_id" ,
361+ extapi_id_2 = "extapi_id" ,
362362 method = "GET" ,
363363 name = "name" ,
364364 path = "/resource" ,
@@ -374,12 +374,12 @@ async def test_streaming_response_create(self, async_client: AsyncAsktable) -> N
374374
375375 @parametrize
376376 async def test_path_params_create (self , async_client : AsyncAsktable ) -> None :
377- with pytest .raises (ValueError , match = r"Expected a non-empty value for `path_extapi_id ` but received ''" ):
377+ with pytest .raises (ValueError , match = r"Expected a non-empty value for `extapi_id_1 ` but received ''" ):
378378 await async_client .extapis .routes .with_raw_response .create (
379- path_extapi_id = "" ,
379+ extapi_id_1 = "" ,
380380 id = "id" ,
381381 created_at = parse_datetime ("2019-12-27T18:11:19.117Z" ),
382- body_extapi_id = "" ,
382+ extapi_id_2 = "" ,
383383 method = "GET" ,
384384 name = "name" ,
385385 path = "/resource" ,
0 commit comments