@@ -127,8 +127,8 @@ def test_init(self, bound_model: BoundStorageBox, resource_client):
127127
128128class TestBoundStorageBoxSnapshot (BoundModelTestCase ):
129129 methods = [
130- BoundStorageBoxSnapshot .update_snapshot ,
131- BoundStorageBoxSnapshot .delete_snapshot ,
130+ ( BoundStorageBoxSnapshot .update , { "client_method" : " update_snapshot" }) ,
131+ ( BoundStorageBoxSnapshot .delete , { "client_method" : " delete_snapshot" }) ,
132132 ]
133133
134134 @pytest .fixture ()
@@ -180,11 +180,26 @@ def test_reload(
180180
181181class TestBoundStorageBoxSubaccount (BoundModelTestCase ):
182182 methods = [
183- BoundStorageBoxSubaccount .update_subaccount ,
184- BoundStorageBoxSubaccount .delete_subaccount ,
185- BoundStorageBoxSubaccount .change_subaccount_home_directory ,
186- BoundStorageBoxSubaccount .reset_subaccount_password ,
187- BoundStorageBoxSubaccount .update_subaccount_access_settings ,
183+ (
184+ BoundStorageBoxSubaccount .update ,
185+ {"client_method" : "update_subaccount" },
186+ ),
187+ (
188+ BoundStorageBoxSubaccount .delete ,
189+ {"client_method" : "delete_subaccount" },
190+ ),
191+ (
192+ BoundStorageBoxSubaccount .change_home_directory ,
193+ {"client_method" : "change_subaccount_home_directory" },
194+ ),
195+ (
196+ BoundStorageBoxSubaccount .reset_password ,
197+ {"client_method" : "reset_subaccount_password" },
198+ ),
199+ (
200+ BoundStorageBoxSubaccount .update_access_settings ,
201+ {"client_method" : "update_subaccount_access_settings" },
202+ ),
188203 ]
189204
190205 @pytest .fixture ()
0 commit comments