@@ -158,7 +158,7 @@ def test_path_params_update(self, client: Asktable) -> None:
158158 @parametrize
159159 def test_method_list (self , client : Asktable ) -> None :
160160 business_glossary = client .business_glossary .list ()
161- assert_matches_type (SyncPage [Entry ], business_glossary , path = ["response" ])
161+ assert_matches_type (SyncPage [EntryWithDefinition ], business_glossary , path = ["response" ])
162162
163163 @parametrize
164164 def test_method_list_with_all_params (self , client : Asktable ) -> None :
@@ -167,7 +167,7 @@ def test_method_list_with_all_params(self, client: Asktable) -> None:
167167 size = 1 ,
168168 term = "term" ,
169169 )
170- assert_matches_type (SyncPage [Entry ], business_glossary , path = ["response" ])
170+ assert_matches_type (SyncPage [EntryWithDefinition ], business_glossary , path = ["response" ])
171171
172172 @parametrize
173173 def test_raw_response_list (self , client : Asktable ) -> None :
@@ -176,7 +176,7 @@ def test_raw_response_list(self, client: Asktable) -> None:
176176 assert response .is_closed is True
177177 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
178178 business_glossary = response .parse ()
179- assert_matches_type (SyncPage [Entry ], business_glossary , path = ["response" ])
179+ assert_matches_type (SyncPage [EntryWithDefinition ], business_glossary , path = ["response" ])
180180
181181 @parametrize
182182 def test_streaming_response_list (self , client : Asktable ) -> None :
@@ -185,7 +185,7 @@ def test_streaming_response_list(self, client: Asktable) -> None:
185185 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
186186
187187 business_glossary = response .parse ()
188- assert_matches_type (SyncPage [Entry ], business_glossary , path = ["response" ])
188+ assert_matches_type (SyncPage [EntryWithDefinition ], business_glossary , path = ["response" ])
189189
190190 assert cast (Any , response .is_closed ) is True
191191
@@ -367,7 +367,7 @@ async def test_path_params_update(self, async_client: AsyncAsktable) -> None:
367367 @parametrize
368368 async def test_method_list (self , async_client : AsyncAsktable ) -> None :
369369 business_glossary = await async_client .business_glossary .list ()
370- assert_matches_type (AsyncPage [Entry ], business_glossary , path = ["response" ])
370+ assert_matches_type (AsyncPage [EntryWithDefinition ], business_glossary , path = ["response" ])
371371
372372 @parametrize
373373 async def test_method_list_with_all_params (self , async_client : AsyncAsktable ) -> None :
@@ -376,7 +376,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncAsktable) ->
376376 size = 1 ,
377377 term = "term" ,
378378 )
379- assert_matches_type (AsyncPage [Entry ], business_glossary , path = ["response" ])
379+ assert_matches_type (AsyncPage [EntryWithDefinition ], business_glossary , path = ["response" ])
380380
381381 @parametrize
382382 async def test_raw_response_list (self , async_client : AsyncAsktable ) -> None :
@@ -385,7 +385,7 @@ async def test_raw_response_list(self, async_client: AsyncAsktable) -> None:
385385 assert response .is_closed is True
386386 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
387387 business_glossary = await response .parse ()
388- assert_matches_type (AsyncPage [Entry ], business_glossary , path = ["response" ])
388+ assert_matches_type (AsyncPage [EntryWithDefinition ], business_glossary , path = ["response" ])
389389
390390 @parametrize
391391 async def test_streaming_response_list (self , async_client : AsyncAsktable ) -> None :
@@ -394,7 +394,7 @@ async def test_streaming_response_list(self, async_client: AsyncAsktable) -> Non
394394 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
395395
396396 business_glossary = await response .parse ()
397- assert_matches_type (AsyncPage [Entry ], business_glossary , path = ["response" ])
397+ assert_matches_type (AsyncPage [EntryWithDefinition ], business_glossary , path = ["response" ])
398398
399399 assert cast (Any , response .is_closed ) is True
400400
0 commit comments