Skip to content

Commit

Permalink
refactor: reduce deltas for next rate on Compound
Browse files Browse the repository at this point in the history
  • Loading branch information
QGarchery committed Jan 29, 2024
1 parent de77d30 commit 8a74705
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/prod/compound/TestUpgradeLens.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ contract TestUpgradeLens is TestSetup {
assertApproxEqAbs(
lens.getCurrentUserSupplyRatePerBlock(supplyMarket.poolToken, address(user)),
expectedSupplyRate,
1e16,
1e8,
string.concat(supplyMarket.symbol, " supply rate")
);

Expand All @@ -141,7 +141,7 @@ contract TestUpgradeLens is TestSetup {
assertApproxEqAbs(
lens.getCurrentUserBorrowRatePerBlock(borrowMarket.poolToken, address(user)),
expectedBorrowRate,
1e16,
1e8,
string.concat(borrowMarket.symbol, " borrow rate")
);
}
Expand Down

0 comments on commit 8a74705

Please sign in to comment.