Skip to content

Commit

Permalink
small typo in error message (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Jan 23, 2020
1 parent ba23954 commit 6be551d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/stablex/stablex_large_example.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ contract("BatchExchange", async accounts => {
)
assert(
firstSubmissionTX.receipt.gasUsed < fivePointFiveMillion,
`Solution submission exceeded 6.5 million gas at ${firstSubmissionTX.receipt.gasUsed}`
`Solution submission exceeded 5.5 million gas at ${firstSubmissionTX.receipt.gasUsed}`
)

// Ensure second 30 order's users valid withdraw requests.
Expand All @@ -69,7 +69,7 @@ contract("BatchExchange", async accounts => {
)
assert(
secondSubmissionTX.receipt.gasUsed < fivePointFiveMillion,
`Competing solution submission exceeded 6.5 million gas at ${secondSubmissionTX.receipt.gasUsed}`
`Competing solution submission exceeded 5.5 million gas at ${secondSubmissionTX.receipt.gasUsed}`
)
})
})
Expand Down

0 comments on commit 6be551d

Please sign in to comment.