Skip to content

Commit

Permalink
Remove redundant variable
Browse files Browse the repository at this point in the history
  • Loading branch information
prateek105 committed Nov 16, 2023
1 parent c682625 commit 47a2564
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/forge/unit/Auctions.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ contract AuctionsTest is DSTestPlus {
uint256 collateral = 1000 * 1e18;
uint256 neutralPrice = 15 * 1e18;
uint256 bondFactor = 0.1 * 1e18;
uint256 thresholdPrice = Maths.wdiv(debt, collateral);

assertEq(_bpf(Maths.wdiv(debt, collateral), neutralPrice, bondFactor, price), 0.1 * 1e18);
assertEq(_bpf(Maths.wdiv(9000 * 1e18, collateral), neutralPrice, bondFactor, price), 0.083333333333333333 * 1e18);
Expand Down

0 comments on commit 47a2564

Please sign in to comment.