Skip to content

Commit

Permalink
remove only.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmckelvy1 committed Sep 23, 2024
1 parent c3fe2b5 commit 70b7893
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/ZTradingExtremes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ describeExtreme(`Trading Extreme Values (${SLOW ? 'slow mode' : 'fast mode'})`,
const amt = remaining < noThrottleIssuance.amtRate ? remaining : noThrottleIssuance.amtRate
await rToken.connect(addr1).issue(amt)
}
await advanceTime(3600)
expect(await rToken.balanceOf(addr1.address)).to.equal(rTokenSupply)

// Mint any excess possible before increasing exchange rate to avoid blowing through max BU exchange rate
Expand Down Expand Up @@ -496,6 +497,7 @@ describeExtreme(`Trading Extreme Values (${SLOW ? 'slow mode' : 'fast mode'})`,
const amt = remaining < noThrottleIssuance.amtRate ? remaining : noThrottleIssuance.amtRate
await rToken.connect(addr1).issue(amt)
}
await advanceTime(3600)
expect(await rToken.balanceOf(addr1.address)).to.equal(rTokenSupply)

// === Execution ===
Expand Down Expand Up @@ -556,7 +558,7 @@ describeExtreme(`Trading Extreme Values (${SLOW ? 'slow mode' : 'fast mode'})`,
})
})

context.only('Recovery from default', function () {
context('Recovery from default', function () {
const runRecollateralizationAuctions = async (basketSize: number) => {
let uncollateralized = true
const basketsNeeded = await rToken.basketsNeeded()
Expand Down

0 comments on commit 70b7893

Please sign in to comment.