Skip to content

Commit

Permalink
Fix max brush price test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSamWitch committed Jun 24, 2024
1 parent 20d1702 commit 49044dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/SamWitchOrderBook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2675,7 +2675,7 @@ describe("SamWitchOrderBook", function () {
quantity,
},
]),
).to.throw;
).to.be.revertedWithPanic;

await expect(
orderBook.limitOrders([
Expand All @@ -2686,7 +2686,7 @@ describe("SamWitchOrderBook", function () {
quantity,
},
]),
).to.throw;
).to.not.be.reverted;
});

it("Try to upgrade the contract with & without using the owner", async function () {
Expand Down

0 comments on commit 49044dc

Please sign in to comment.