Skip to content

Commit

Permalink
fix(platform-test-suite): fix expect to match bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
pshenmic committed Feb 5, 2025
1 parent a69bbeb commit 677b83b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ describe('Platform', () => {

expect(fetchedIdentityWithoutBalance).to.deep.equal(localIdentityWithoutBalance);

expect(fetchedIdentity.getBalance()).to.be.greaterThan(0);
expect(fetchedIdentity.getBalance() > 0).to.be.true();
});
});

Expand Down

0 comments on commit 677b83b

Please sign in to comment.