@@ -106,15 +106,15 @@ def test_path_params_create(self, client: ModernTreasury) -> None:
106106 @parametrize
107107 def test_method_retrieve (self , client : ModernTreasury ) -> None :
108108 balance_report = client .internal_accounts .balance_reports .retrieve (
109- id = "string " ,
109+ id = "latest " ,
110110 internal_account_id = "internal_account_id" ,
111111 )
112112 assert_matches_type (BalanceReport , balance_report , path = ["response" ])
113113
114114 @parametrize
115115 def test_raw_response_retrieve (self , client : ModernTreasury ) -> None :
116116 response = client .internal_accounts .balance_reports .with_raw_response .retrieve (
117- id = "string " ,
117+ id = "latest " ,
118118 internal_account_id = "internal_account_id" ,
119119 )
120120
@@ -126,7 +126,7 @@ def test_raw_response_retrieve(self, client: ModernTreasury) -> None:
126126 @parametrize
127127 def test_streaming_response_retrieve (self , client : ModernTreasury ) -> None :
128128 with client .internal_accounts .balance_reports .with_streaming_response .retrieve (
129- id = "string " ,
129+ id = "latest " ,
130130 internal_account_id = "internal_account_id" ,
131131 ) as response :
132132 assert not response .is_closed
@@ -141,7 +141,7 @@ def test_streaming_response_retrieve(self, client: ModernTreasury) -> None:
141141 def test_path_params_retrieve (self , client : ModernTreasury ) -> None :
142142 with pytest .raises (ValueError , match = r"Expected a non-empty value for `internal_account_id` but received ''" ):
143143 client .internal_accounts .balance_reports .with_raw_response .retrieve (
144- id = "string " ,
144+ id = "latest " ,
145145 internal_account_id = "" ,
146146 )
147147
@@ -333,15 +333,15 @@ async def test_path_params_create(self, async_client: AsyncModernTreasury) -> No
333333 @parametrize
334334 async def test_method_retrieve (self , async_client : AsyncModernTreasury ) -> None :
335335 balance_report = await async_client .internal_accounts .balance_reports .retrieve (
336- id = "string " ,
336+ id = "latest " ,
337337 internal_account_id = "internal_account_id" ,
338338 )
339339 assert_matches_type (BalanceReport , balance_report , path = ["response" ])
340340
341341 @parametrize
342342 async def test_raw_response_retrieve (self , async_client : AsyncModernTreasury ) -> None :
343343 response = await async_client .internal_accounts .balance_reports .with_raw_response .retrieve (
344- id = "string " ,
344+ id = "latest " ,
345345 internal_account_id = "internal_account_id" ,
346346 )
347347
@@ -353,7 +353,7 @@ async def test_raw_response_retrieve(self, async_client: AsyncModernTreasury) ->
353353 @parametrize
354354 async def test_streaming_response_retrieve (self , async_client : AsyncModernTreasury ) -> None :
355355 async with async_client .internal_accounts .balance_reports .with_streaming_response .retrieve (
356- id = "string " ,
356+ id = "latest " ,
357357 internal_account_id = "internal_account_id" ,
358358 ) as response :
359359 assert not response .is_closed
@@ -368,7 +368,7 @@ async def test_streaming_response_retrieve(self, async_client: AsyncModernTreasu
368368 async def test_path_params_retrieve (self , async_client : AsyncModernTreasury ) -> None :
369369 with pytest .raises (ValueError , match = r"Expected a non-empty value for `internal_account_id` but received ''" ):
370370 await async_client .internal_accounts .balance_reports .with_raw_response .retrieve (
371- id = "string " ,
371+ id = "latest " ,
372372 internal_account_id = "" ,
373373 )
374374
0 commit comments