@@ -69,15 +69,15 @@ def test_streaming_response_create(self, client: CasParser) -> None:
6969 @parametrize
7070 def test_method_retrieve (self , client : CasParser ) -> None :
7171 inbound_email = client .inbound_email .retrieve (
72- "ie_a1b2c3d4e5f6 " ,
72+ "inbound_email_id " ,
7373 )
7474 assert_matches_type (InboundEmailRetrieveResponse , inbound_email , path = ["response" ])
7575
7676 @pytest .mark .skip (reason = "Mock server tests are disabled" )
7777 @parametrize
7878 def test_raw_response_retrieve (self , client : CasParser ) -> None :
7979 response = client .inbound_email .with_raw_response .retrieve (
80- "ie_a1b2c3d4e5f6 " ,
80+ "inbound_email_id " ,
8181 )
8282
8383 assert response .is_closed is True
@@ -89,7 +89,7 @@ def test_raw_response_retrieve(self, client: CasParser) -> None:
8989 @parametrize
9090 def test_streaming_response_retrieve (self , client : CasParser ) -> None :
9191 with client .inbound_email .with_streaming_response .retrieve (
92- "ie_a1b2c3d4e5f6 " ,
92+ "inbound_email_id " ,
9393 ) as response :
9494 assert not response .is_closed
9595 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -240,15 +240,15 @@ async def test_streaming_response_create(self, async_client: AsyncCasParser) ->
240240 @parametrize
241241 async def test_method_retrieve (self , async_client : AsyncCasParser ) -> None :
242242 inbound_email = await async_client .inbound_email .retrieve (
243- "ie_a1b2c3d4e5f6 " ,
243+ "inbound_email_id " ,
244244 )
245245 assert_matches_type (InboundEmailRetrieveResponse , inbound_email , path = ["response" ])
246246
247247 @pytest .mark .skip (reason = "Mock server tests are disabled" )
248248 @parametrize
249249 async def test_raw_response_retrieve (self , async_client : AsyncCasParser ) -> None :
250250 response = await async_client .inbound_email .with_raw_response .retrieve (
251- "ie_a1b2c3d4e5f6 " ,
251+ "inbound_email_id " ,
252252 )
253253
254254 assert response .is_closed is True
@@ -260,7 +260,7 @@ async def test_raw_response_retrieve(self, async_client: AsyncCasParser) -> None
260260 @parametrize
261261 async def test_streaming_response_retrieve (self , async_client : AsyncCasParser ) -> None :
262262 async with async_client .inbound_email .with_streaming_response .retrieve (
263- "ie_a1b2c3d4e5f6 " ,
263+ "inbound_email_id " ,
264264 ) as response :
265265 assert not response .is_closed
266266 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
0 commit comments