Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaShWoof committed Jan 6, 2025
1 parent 6a7f18a commit d7d9c2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scenario/AddMaticxCollateralScenario.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ scenario(
expect(await albert.getCometCollateralBalance(maticx.address)).to.be.equal(
supplyAmount
);
expect(await albert.getCometBaseBalance()).to.be.equal(-borrowAmount);
expect(await albert.getCometBaseBalance()).to.be.closeTo(-borrowAmount, 1n);
}
);
2 changes: 1 addition & 1 deletion scenario/WithdrawReservesScenario.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ scenario(

await context.setNextBaseFeeToZero();
await expectRevertCustom(
admin.withdrawReserves(albert.address, 101n * scale, { gasPrice: 0 }),
admin.withdrawReserves(albert.address, 1001n * scale, { gasPrice: 0 }),
'InsufficientReserves()'
);
}
Expand Down

0 comments on commit d7d9c2c

Please sign in to comment.