Merge pull request #20 from status-im/fix-tests

minAt NOW to avoid failing in next test files
This commit is contained in:
Bitgamma 2020-04-23 14:51:28 +03:00 committed by GitHub
commit 4f9c711678
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 6 deletions

View File

@ -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);
});
});

View File

@ -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);
});
});