Merge pull request #20 from status-im/fix-tests
minAt NOW to avoid failing in next test files
This commit is contained in:
commit
4f9c711678
|
@ -398,5 +398,6 @@ contract("GiftBucket", function () {
|
|||
it("shop can kill contract after expirationTime", async function() {
|
||||
await mineAt(EXPIRATION_TIME);
|
||||
await testKill();
|
||||
await mineAt(NOW);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -322,5 +322,6 @@ contract("NFTBucket", function () {
|
|||
it("shop can kill contract after expirationTime", async function() {
|
||||
await mineAt(EXPIRATION_TIME);
|
||||
await testKill();
|
||||
await mineAt(NOW);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue