Skip to content

Commit

Permalink
fix CCR typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rayeaster committed Oct 10, 2023
1 parent a83bd89 commit ff39b92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ contract('CdpManager - Simple Liquidation with external liquidators', async acco
let _icr = await cdpManager.getSyncedICR(_bobCdpId, _oldPrice);
assert.isTrue(_icr.lt(LICR));
let _tcr = await cdpManager.getSyncedTCR(_oldPrice);
assert.isTrue(_tcr.lt(CCR));
assert.isTrue(_tcr.lt(_CCR));

// full liquidation should leave bad debt and zero collateral for this CDP
let _surplusBalBefore = await collSurplusPool.getSurplusCollShares(bob);
Expand Down

0 comments on commit ff39b92

Please sign in to comment.