From b81e6e6532c5194689717cfc1c6bf22cbd5cea6a Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Thu, 19 Jan 2023 16:49:10 +0100 Subject: [PATCH] [marketplace] better wording Avoids the word 'expired' which is associated with cancelling a request Co-authored-by: Eric Mastro --- test/Marketplace.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Marketplace.test.js b/test/Marketplace.test.js index 3d56673..fc43acd 100644 --- a/test/Marketplace.test.js +++ b/test/Marketplace.test.js @@ -534,7 +534,7 @@ describe("Marketplace", function () { expect(await marketplace.requestState(slot.request)).to.equal(New) }) - it("changes to 'Finished' when the time has expired", async function () { + it("changes to 'Finished' when the request ends", async function () { await waitUntilStarted(marketplace, request, proof) await waitUntilFinished(marketplace, requestId(request)) expect(await marketplace.requestState(slot.request)).to.equal(Finished)