@@ -1244,7 +1244,7 @@ describe("Balance Platform", (): void => {
12441244 it ( "should support DELETE /balanceAccounts/{id}/transferLimits/{transferLimitId}" , async ( ) : Promise < void > => {
12451245 scope . delete ( `/balanceAccounts/${ balanceAccountId } /transferLimits/${ transferLimitId } ` ) . reply ( 204 ) ;
12461246
1247- await balancePlatformService . TransferLimitsBalanceAccountLevelApi . deletePendingTransferLimit ( transferLimitId , balanceAccountId ) ;
1247+ await balancePlatformService . TransferLimitsBalanceAccountLevelApi . deletePendingTransferLimit ( balanceAccountId , transferLimitId ) ;
12481248 } ) ;
12491249
12501250 it ( "should support GET /balanceAccounts/{id}/transferLimits/current" , async ( ) : Promise < void > => {
@@ -1291,7 +1291,7 @@ describe("Balance Platform", (): void => {
12911291 scope . get ( `/balanceAccounts/${ balanceAccountId } /transferLimits/${ transferLimitId } ` )
12921292 . reply ( 200 , mockResponse ) ;
12931293
1294- const response : Types . balancePlatform . TransferLimit = await balancePlatformService . TransferLimitsBalanceAccountLevelApi . getSpecificTransferLimit ( transferLimitId , balanceAccountId ) ;
1294+ const response : Types . balancePlatform . TransferLimit = await balancePlatformService . TransferLimitsBalanceAccountLevelApi . getSpecificTransferLimit ( balanceAccountId , transferLimitId ) ;
12951295
12961296 expect ( response . id ) . toBe ( transferLimitId ) ;
12971297 } ) ;
@@ -1364,7 +1364,7 @@ describe("Balance Platform", (): void => {
13641364 it ( "should support DELETE /balancePlatforms/{id}/transferLimits/{transferLimitId}" , async ( ) : Promise < void > => {
13651365 scope . delete ( `/balancePlatforms/${ balancePlatformId } /transferLimits/${ transferLimitId } ` ) . reply ( 204 ) ;
13661366
1367- await balancePlatformService . TransferLimitsBalancePlatformLevelApi . deletePendingTransferLimit ( transferLimitId , balancePlatformId ) ;
1367+ await balancePlatformService . TransferLimitsBalancePlatformLevelApi . deletePendingTransferLimit ( balancePlatformId , transferLimitId ) ;
13681368 } ) ;
13691369
13701370 it ( "should support GET /balancePlatforms/{id}/transferLimits/{transferLimitId}" , async ( ) : Promise < void > => {
@@ -1389,7 +1389,7 @@ describe("Balance Platform", (): void => {
13891389 scope . get ( `/balancePlatforms/${ balancePlatformId } /transferLimits/${ transferLimitId } ` )
13901390 . reply ( 200 , mockResponse ) ;
13911391
1392- const response : Types . balancePlatform . TransferLimit = await balancePlatformService . TransferLimitsBalancePlatformLevelApi . getSpecificTransferLimit ( transferLimitId , balancePlatformId ) ;
1392+ const response : Types . balancePlatform . TransferLimit = await balancePlatformService . TransferLimitsBalancePlatformLevelApi . getSpecificTransferLimit ( balancePlatformId , transferLimitId ) ;
13931393
13941394 expect ( response . id ) . toBe ( "TRLI00000000000000000000000001" ) ;
13951395 } ) ;
0 commit comments