@@ -1666,8 +1666,8 @@ def test_test_helpers_testclock_advance(self, request_mock):
16661666 "/v1/test_helpers/test_clocks/clock_xyz/advance" ,
16671667 )
16681668
1669- def test_customer_fundinginstructions_create (self , request_mock ):
1670- stripe .Customer .create_funding_instruction (
1669+ def test_customer_create_funding_instructions (self , request_mock ):
1670+ stripe .Customer .create_funding_instructions (
16711671 "cus_123" ,
16721672 bank_transfer = {
16731673 "requested_address_types" : ["zengin" ],
@@ -1681,13 +1681,6 @@ def test_customer_fundinginstructions_create(self, request_mock):
16811681 "/v1/customers/cus_123/funding_instructions" ,
16821682 )
16831683
1684- def test_customer_fundinginstructions_list (self , request_mock ):
1685- stripe .Customer .list_funding_instructions ("cus_123" )
1686- request_mock .assert_requested (
1687- "get" ,
1688- "/v1/customers/cus_123/funding_instructions" ,
1689- )
1690-
16911684 def test_terminal_configuration_list (self , request_mock ):
16921685 stripe .terminal .Configuration .list ()
16931686 request_mock .assert_requested ("get" , "/v1/terminal/configurations" )
@@ -1703,7 +1696,10 @@ def test_terminal_configuration_create(self, request_mock):
17031696 request_mock .assert_requested ("post" , "/v1/terminal/configurations" )
17041697
17051698 def test_terminal_configuration_update (self , request_mock ):
1706- stripe .terminal .Configuration .modify ("uc_123" )
1699+ stripe .terminal .Configuration .modify (
1700+ "uc_123" ,
1701+ tipping = {"usd" : {"fixed_amounts" : [10 ]}},
1702+ )
17071703 request_mock .assert_requested (
17081704 "post" , "/v1/terminal/configurations/uc_123"
17091705 )
0 commit comments