Skip to content

Commit

Permalink
updated unit tests following merge of PR#1013
Browse files Browse the repository at this point in the history
  • Loading branch information
EdNoepel committed Dec 13, 2023
1 parent d4d9602 commit 63e4ebf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/forge/unit/ERC20Pool/ERC20PoolInfoUtils.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ contract ERC20PoolInfoUtilsTest is ERC20HelperContract {
assertEq(collateral, 100 * 1e18);
assertEq(debtToCover, 21_020.912189618561131155 * 1e18);
assertEq(isCollateralized, true);
assertEq(price, 233.703212526982164624 * 1e18);
assertEq(neutralPrice, 233.703212526982164624 * 1e18);
assertEq(referencePrice, 233.703212526982164624 * 1e18);
assertEq(price, 243.051341028061451208 * 1e18);
assertEq(neutralPrice, 243.051341028061451209 * 1e18);
assertEq(referencePrice, 243.051341028061451209 * 1e18);
assertEq(thresholdPrice, 210.201923076923077020 * 1e18);
assertEq(bondFactor, 0.011180339887498948 * 1e18);
}
Expand Down Expand Up @@ -189,8 +189,8 @@ contract ERC20PoolInfoUtilsTest is ERC20HelperContract {
assertEq(bondFactor, 0.011180339887498948 * 1e18);
assertEq(bondSize, 235.012894500590867635 * 1e18);
assertEq(kickTime, _startTime);
assertEq(referencePrice, 233.703212526982164624 * 1e18);
assertEq(neutralPrice, 233.703212526982164624 * 1e18);
assertEq(referencePrice, 243.051341028061451209 * 1e18);
assertEq(neutralPrice, 243.051341028061451209 * 1e18);
assertEq(thresholdPrice, 210.201923076923077020 * 1e18);
assertEq(head, _borrower);
assertEq(next, address(0));
Expand Down

0 comments on commit 63e4ebf

Please sign in to comment.