Skip to content

Commit

Permalink
Remove unnecessary check expectation in test
Browse files Browse the repository at this point in the history
The equality check is enough given we hardcode the expected values.
  • Loading branch information
r-czajkowski committed Dec 6, 2023
1 parent 2750286 commit ed73109
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions core/test/Acre.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,9 +338,6 @@ describe("Acre", () => {
// tBTC token precision.
const expectedAssetsToRedeem = 112499999999999999999n

expect(availableAssetsToRedeem).to.be.greaterThan(
staker1AmountToStake,
)
expect(availableAssetsToRedeem).to.be.eq(expectedAssetsToRedeem)
})

Expand All @@ -353,9 +350,6 @@ describe("Acre", () => {
// tBTC token precision.
const expectedAssetsToRedeem = 37499999999999999999n

expect(availableAssetsToRedeem).to.be.greaterThan(
staker2AmountToStake,
)
expect(availableAssetsToRedeem).to.be.eq(expectedAssetsToRedeem)
})
})
Expand Down

0 comments on commit ed73109

Please sign in to comment.