Skip to content

Commit

Permalink
✅ Fix fuzzing test
Browse files Browse the repository at this point in the history
  • Loading branch information
MerlinEgalite committed Oct 20, 2022
1 parent ee96b96 commit ee4b2bc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test-foundry/compound/TestLens.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1212,11 +1212,12 @@ contract TestLens is TestSetup {
address(borrower1),
new address[](0)
);
assertEq(
assertApproxEqAbs(
collateralValue.div(borrowedPrice).div(
comptroller.liquidationIncentiveMantissa()
),
0
0,
1
);
assertEq(toRepay, 0);
}
Expand Down

0 comments on commit ee4b2bc

Please sign in to comment.