From 7cbb717de702712bebe757989394e0412c88e15a Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Mon, 11 Apr 2022 14:09:48 +0200 Subject: [PATCH] Fix tests that weren't running --- test/Marketplace.test.js | 2 +- test/Proofs.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Marketplace.test.js b/test/Marketplace.test.js index b0cc2e4..598e5f4 100644 --- a/test/Marketplace.test.js +++ b/test/Marketplace.test.js @@ -148,7 +148,7 @@ describe("Marketplace", function () { }) }) - describe("selecting an offer", async function () { + describe("selecting an offer", function () { beforeEach(async function () { switchAccount(client) await token.approve(marketplace.address, request.ask.maxPrice) diff --git a/test/Proofs.test.js b/test/Proofs.test.js index 48b539d..fc0fdb9 100644 --- a/test/Proofs.test.js +++ b/test/Proofs.test.js @@ -139,7 +139,7 @@ describe("Proofs", function () { }) }) - describe("when proofs are required", async function () { + describe("when proofs are required", function () { beforeEach(async function () { await proofs.expectProofs(id, probability, duration) })