@@ -117,9 +117,7 @@ def test_path_params_retrieve(self, client: Kernel) -> None:
117117 @pytest .mark .skip (reason = "Prism tests are disabled" )
118118 @parametrize
119119 def test_method_list (self , client : Kernel ) -> None :
120- deployment = client .deployments .list (
121- app_name = "app_name" ,
122- )
120+ deployment = client .deployments .list ()
123121 assert_matches_type (SyncOffsetPagination [DeploymentListResponse ], deployment , path = ["response" ])
124122
125123 @pytest .mark .skip (reason = "Prism tests are disabled" )
@@ -135,9 +133,7 @@ def test_method_list_with_all_params(self, client: Kernel) -> None:
135133 @pytest .mark .skip (reason = "Prism tests are disabled" )
136134 @parametrize
137135 def test_raw_response_list (self , client : Kernel ) -> None :
138- response = client .deployments .with_raw_response .list (
139- app_name = "app_name" ,
140- )
136+ response = client .deployments .with_raw_response .list ()
141137
142138 assert response .is_closed is True
143139 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -147,9 +143,7 @@ def test_raw_response_list(self, client: Kernel) -> None:
147143 @pytest .mark .skip (reason = "Prism tests are disabled" )
148144 @parametrize
149145 def test_streaming_response_list (self , client : Kernel ) -> None :
150- with client .deployments .with_streaming_response .list (
151- app_name = "app_name" ,
152- ) as response :
146+ with client .deployments .with_streaming_response .list () as response :
153147 assert not response .is_closed
154148 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
155149
@@ -309,9 +303,7 @@ async def test_path_params_retrieve(self, async_client: AsyncKernel) -> None:
309303 @pytest .mark .skip (reason = "Prism tests are disabled" )
310304 @parametrize
311305 async def test_method_list (self , async_client : AsyncKernel ) -> None :
312- deployment = await async_client .deployments .list (
313- app_name = "app_name" ,
314- )
306+ deployment = await async_client .deployments .list ()
315307 assert_matches_type (AsyncOffsetPagination [DeploymentListResponse ], deployment , path = ["response" ])
316308
317309 @pytest .mark .skip (reason = "Prism tests are disabled" )
@@ -327,9 +319,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncKernel) -> N
327319 @pytest .mark .skip (reason = "Prism tests are disabled" )
328320 @parametrize
329321 async def test_raw_response_list (self , async_client : AsyncKernel ) -> None :
330- response = await async_client .deployments .with_raw_response .list (
331- app_name = "app_name" ,
332- )
322+ response = await async_client .deployments .with_raw_response .list ()
333323
334324 assert response .is_closed is True
335325 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -339,9 +329,7 @@ async def test_raw_response_list(self, async_client: AsyncKernel) -> None:
339329 @pytest .mark .skip (reason = "Prism tests are disabled" )
340330 @parametrize
341331 async def test_streaming_response_list (self , async_client : AsyncKernel ) -> None :
342- async with async_client .deployments .with_streaming_response .list (
343- app_name = "app_name" ,
344- ) as response :
332+ async with async_client .deployments .with_streaming_response .list () as response :
345333 assert not response .is_closed
346334 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
347335
0 commit comments