fix test
This commit is contained in:
parent
945c501ce6
commit
974e5470b5
|
@ -148,9 +148,9 @@ describe("Marketplace", function () {
|
||||||
|
|
||||||
it("allows retrieval of request of a filled slot", async function () {
|
it("allows retrieval of request of a filled slot", async function () {
|
||||||
await marketplace.fillSlot(slot.request, slot.index, proof)
|
await marketplace.fillSlot(slot.request, slot.index, proof)
|
||||||
expect(await marketplace.getActiveSlot(slotId(slot))).to.be.request(
|
let activeSlot = await marketplace.getActiveSlot(slotId(slot))
|
||||||
(request, slot.index)
|
expect(activeSlot[0]).to.be.request(request)
|
||||||
)
|
expect(activeSlot[1]).to.equal(slot.index)
|
||||||
})
|
})
|
||||||
|
|
||||||
it("is rejected when proof is incorrect", async function () {
|
it("is rejected when proof is incorrect", async function () {
|
||||||
|
|
Loading…
Reference in New Issue