@@ -18,15 +18,15 @@ class TestIntrafiBalances:
1818 parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
1919
2020 @parametrize
21- def test_method_retrieve (self , client : Increase ) -> None :
22- intrafi_balance = client .intrafi_balances .retrieve (
21+ def test_method_intrafi_balance (self , client : Increase ) -> None :
22+ intrafi_balance = client .intrafi_balances .intrafi_balance (
2323 "account_id" ,
2424 )
2525 assert_matches_type (IntrafiBalance , intrafi_balance , path = ["response" ])
2626
2727 @parametrize
28- def test_raw_response_retrieve (self , client : Increase ) -> None :
29- response = client .intrafi_balances .with_raw_response .retrieve (
28+ def test_raw_response_intrafi_balance (self , client : Increase ) -> None :
29+ response = client .intrafi_balances .with_raw_response .intrafi_balance (
3030 "account_id" ,
3131 )
3232
@@ -36,8 +36,8 @@ def test_raw_response_retrieve(self, client: Increase) -> None:
3636 assert_matches_type (IntrafiBalance , intrafi_balance , path = ["response" ])
3737
3838 @parametrize
39- def test_streaming_response_retrieve (self , client : Increase ) -> None :
40- with client .intrafi_balances .with_streaming_response .retrieve (
39+ def test_streaming_response_intrafi_balance (self , client : Increase ) -> None :
40+ with client .intrafi_balances .with_streaming_response .intrafi_balance (
4141 "account_id" ,
4242 ) as response :
4343 assert not response .is_closed
@@ -49,9 +49,9 @@ def test_streaming_response_retrieve(self, client: Increase) -> None:
4949 assert cast (Any , response .is_closed ) is True
5050
5151 @parametrize
52- def test_path_params_retrieve (self , client : Increase ) -> None :
52+ def test_path_params_intrafi_balance (self , client : Increase ) -> None :
5353 with pytest .raises (ValueError , match = r"Expected a non-empty value for `account_id` but received ''" ):
54- client .intrafi_balances .with_raw_response .retrieve (
54+ client .intrafi_balances .with_raw_response .intrafi_balance (
5555 "" ,
5656 )
5757
@@ -60,15 +60,15 @@ class TestAsyncIntrafiBalances:
6060 parametrize = pytest .mark .parametrize ("async_client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
6161
6262 @parametrize
63- async def test_method_retrieve (self , async_client : AsyncIncrease ) -> None :
64- intrafi_balance = await async_client .intrafi_balances .retrieve (
63+ async def test_method_intrafi_balance (self , async_client : AsyncIncrease ) -> None :
64+ intrafi_balance = await async_client .intrafi_balances .intrafi_balance (
6565 "account_id" ,
6666 )
6767 assert_matches_type (IntrafiBalance , intrafi_balance , path = ["response" ])
6868
6969 @parametrize
70- async def test_raw_response_retrieve (self , async_client : AsyncIncrease ) -> None :
71- response = await async_client .intrafi_balances .with_raw_response .retrieve (
70+ async def test_raw_response_intrafi_balance (self , async_client : AsyncIncrease ) -> None :
71+ response = await async_client .intrafi_balances .with_raw_response .intrafi_balance (
7272 "account_id" ,
7373 )
7474
@@ -78,8 +78,8 @@ async def test_raw_response_retrieve(self, async_client: AsyncIncrease) -> None:
7878 assert_matches_type (IntrafiBalance , intrafi_balance , path = ["response" ])
7979
8080 @parametrize
81- async def test_streaming_response_retrieve (self , async_client : AsyncIncrease ) -> None :
82- async with async_client .intrafi_balances .with_streaming_response .retrieve (
81+ async def test_streaming_response_intrafi_balance (self , async_client : AsyncIncrease ) -> None :
82+ async with async_client .intrafi_balances .with_streaming_response .intrafi_balance (
8383 "account_id" ,
8484 ) as response :
8585 assert not response .is_closed
@@ -91,8 +91,8 @@ async def test_streaming_response_retrieve(self, async_client: AsyncIncrease) ->
9191 assert cast (Any , response .is_closed ) is True
9292
9393 @parametrize
94- async def test_path_params_retrieve (self , async_client : AsyncIncrease ) -> None :
94+ async def test_path_params_intrafi_balance (self , async_client : AsyncIncrease ) -> None :
9595 with pytest .raises (ValueError , match = r"Expected a non-empty value for `account_id` but received ''" ):
96- await async_client .intrafi_balances .with_raw_response .retrieve (
96+ await async_client .intrafi_balances .with_raw_response .intrafi_balance (
9797 "" ,
9898 )
0 commit comments