@@ -139,9 +139,7 @@ def test_path_params_update(self, client: Asktable) -> None:
139139
140140 @parametrize
141141 def test_method_list (self , client : Asktable ) -> None :
142- ats = client .ats .list (
143- datasource_id = "datasource_id" ,
144- )
142+ ats = client .ats .list ()
145143 assert_matches_type (SyncPage [ATSListResponse ], ats , path = ["response" ])
146144
147145 @parametrize
@@ -155,9 +153,7 @@ def test_method_list_with_all_params(self, client: Asktable) -> None:
155153
156154 @parametrize
157155 def test_raw_response_list (self , client : Asktable ) -> None :
158- response = client .ats .with_raw_response .list (
159- datasource_id = "datasource_id" ,
160- )
156+ response = client .ats .with_raw_response .list ()
161157
162158 assert response .is_closed is True
163159 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -166,9 +162,7 @@ def test_raw_response_list(self, client: Asktable) -> None:
166162
167163 @parametrize
168164 def test_streaming_response_list (self , client : Asktable ) -> None :
169- with client .ats .with_streaming_response .list (
170- datasource_id = "datasource_id" ,
171- ) as response :
165+ with client .ats .with_streaming_response .list () as response :
172166 assert not response .is_closed
173167 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
174168
@@ -341,9 +335,7 @@ async def test_path_params_update(self, async_client: AsyncAsktable) -> None:
341335
342336 @parametrize
343337 async def test_method_list (self , async_client : AsyncAsktable ) -> None :
344- ats = await async_client .ats .list (
345- datasource_id = "datasource_id" ,
346- )
338+ ats = await async_client .ats .list ()
347339 assert_matches_type (AsyncPage [ATSListResponse ], ats , path = ["response" ])
348340
349341 @parametrize
@@ -357,9 +349,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncAsktable) ->
357349
358350 @parametrize
359351 async def test_raw_response_list (self , async_client : AsyncAsktable ) -> None :
360- response = await async_client .ats .with_raw_response .list (
361- datasource_id = "datasource_id" ,
362- )
352+ response = await async_client .ats .with_raw_response .list ()
363353
364354 assert response .is_closed is True
365355 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -368,9 +358,7 @@ async def test_raw_response_list(self, async_client: AsyncAsktable) -> None:
368358
369359 @parametrize
370360 async def test_streaming_response_list (self , async_client : AsyncAsktable ) -> None :
371- async with async_client .ats .with_streaming_response .list (
372- datasource_id = "datasource_id" ,
373- ) as response :
361+ async with async_client .ats .with_streaming_response .list () as response :
374362 assert not response .is_closed
375363 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
376364
0 commit comments