Skip to content

Commit

Permalink
restore withdraw test
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-silver committed Apr 18, 2022
1 parent 701cb74 commit d306c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/withdraw-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,9 @@ describe('withdraw', function () {

// no USDC transferred
expect(await USDC.balanceOf(comet.address)).to.eq(100e6);
// expect(await comet.baseBalanceOf(alice.address)).to.eq(0);
expect(await baseBalanceOf(comet, alice.address)).to.eq(0n);
expect(await USDC.balanceOf(alice.address)).to.eq(0);
// expect(await comet.baseBalanceOf(bob.address)).to.eq(0);
expect(await baseBalanceOf(comet, bob.address)).to.eq(0n);
expect(await USDC.balanceOf(bob.address)).to.eq(0);
});
});
Expand Down

0 comments on commit d306c0f

Please sign in to comment.