Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Fixes for rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Arachnid committed Mar 27, 2017
1 parent ca73c41 commit e0bb243
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/simplehashregistrar_test.js
Expand Up @@ -76,7 +76,7 @@ describe('SimpleHashRegistrar', function() {
function(done) {
registrar.startAuction(web3.sha3('name'), {from: accounts[0]}, done);
},
function(done) { advanceTime(48 * 60 * 60, done); },
function(done) { advanceTime(daysInSec(2), done); },
// Starting the same auction again should have no effect
function(done) {
registrar.startAuction(web3.sha3('name'), {from: accounts[0]}, done);
Expand All @@ -95,7 +95,7 @@ describe('SimpleHashRegistrar', function() {
});
},
// Advance time 24 days
function(done) { advanceTime(daysInSec(24), done); },
function(done) { advanceTime(daysInSec(22), done); },
function(done) {
registrar.startAuction(web3.sha3('anothername'), {from: accounts[0]}, done);
},
Expand Down

0 comments on commit e0bb243

Please sign in to comment.