@@ -1796,7 +1796,8 @@ describe('Liquidity Resolvers', (): void => {
17961796 data : payment . toData ( {
17971797 amountSent : BigInt ( 0 ) ,
17981798 balance : BigInt ( 0 )
1799- } )
1799+ } ) ,
1800+ tenantId : Config . operatorTenantId
18001801 } )
18011802 } )
18021803
@@ -1956,6 +1957,7 @@ describe('Liquidity Resolvers', (): void => {
19561957 incomingPaymentId ?: string
19571958 outgoingPaymentId ?: string
19581959 walletAddressId ?: string
1960+ tenantId ?: string
19591961 }
19601962
19611963 const isIncomingPaymentEventType = (
@@ -2011,7 +2013,8 @@ describe('Liquidity Resolvers', (): void => {
20112013 accountId : liquidityAccount . id ,
20122014 assetId : liquidityAccount . asset . id ,
20132015 amount
2014- }
2016+ } ,
2017+ tenantId : Config . operatorTenantId
20152018 }
20162019
20172020 if ( resourceId ) {
@@ -2230,7 +2233,8 @@ describe('Liquidity Resolvers', (): void => {
22302233 accountId : incomingPayment . id ,
22312234 assetId : incomingPayment . asset . id ,
22322235 amount
2233- }
2236+ } ,
2237+ tenantId : Config . operatorTenantId
22342238 } )
22352239
22362240 const response = await appContainer . apolloClient
@@ -2278,7 +2282,8 @@ describe('Liquidity Resolvers', (): void => {
22782282 accountId : incomingPayment . id ,
22792283 assetId : incomingPayment . asset . id ,
22802284 amount
2281- }
2285+ } ,
2286+ tenantId : Config . operatorTenantId
22822287 } )
22832288 let error
22842289 try {
@@ -2376,7 +2381,8 @@ describe('Liquidity Resolvers', (): void => {
23762381 accountId : incomingPayment . id ,
23772382 assetId : incomingPayment . asset . id ,
23782383 amount
2379- }
2384+ } ,
2385+ tenantId : Config . operatorTenantId
23802386 } )
23812387 await expect (
23822388 accountingService . createWithdrawal ( {
@@ -2463,7 +2469,8 @@ describe('Liquidity Resolvers', (): void => {
24632469 accountId : outgoingPayment . id ,
24642470 assetId : outgoingPayment . asset . id ,
24652471 amount
2466- }
2472+ } ,
2473+ tenantId : Config . operatorTenantId
24672474 } )
24682475
24692476 const response = await appContainer . apolloClient
@@ -2604,7 +2611,8 @@ describe('Liquidity Resolvers', (): void => {
26042611 accountId : outgoingPayment . id ,
26052612 assetId : outgoingPayment . asset . id ,
26062613 amount
2607- }
2614+ } ,
2615+ tenantId : Config . operatorTenantId
26082616 } )
26092617 await expect (
26102618 accountingService . createWithdrawal ( {
@@ -2673,7 +2681,8 @@ describe('Liquidity Resolvers', (): void => {
26732681 data : outgoingPayment . toData ( {
26742682 amountSent : BigInt ( 0 ) ,
26752683 balance : BigInt ( 0 )
2676- } )
2684+ } ) ,
2685+ tenantId : Config . operatorTenantId
26772686 } )
26782687 } )
26792688
0 commit comments