Skip to content

Commit

Permalink
Flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenshively committed Dec 30, 2023
1 parent e35981b commit dd71f0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/test/invariants/LenderHarness.sol
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ contract LenderHarness {
uint256 borrowBalanceAfter = LENDER.borrowBalance(msg.sender);
uint256 expectedBorrowBalance = borrowBalanceBefore + amount;
require(
expectedBorrowBalance <= borrowBalanceAfter && borrowBalanceAfter <= expectedBorrowBalance + 3,
expectedBorrowBalance <= borrowBalanceAfter && borrowBalanceAfter <= expectedBorrowBalance + 200,
"borrow: debt mismatch"
);
if (recipient != address(LENDER)) {
Expand Down

0 comments on commit dd71f0e

Please sign in to comment.