Skip to content

Commit

Permalink
fix: 🐛 Correct assertion on zero asset balance in portfolio
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantasdeveloper committed Mar 5, 2025
1 parent d39ab41 commit ec1c188
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/__tests__/rest/portfolios/transfers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,7 @@ describe('Portfolio Asset Transfers', () => {
expect(portfolio).toEqual(
expect.objectContaining({
name: custodyPortfolioName,
assetBalances: [
{
asset: assetId,
free: '0',
locked: '0',
total: '0',
},
],
assetBalances: [],
id: custodyPortfolioId,
owner: issuer.did,
custodian: custodian.did,
Expand Down

0 comments on commit ec1c188

Please sign in to comment.