Actually use the fucking options object when setting up tests

This commit is contained in:
Daniel Benton 2017-02-04 22:57:46 -05:00
parent 630f94f707
commit ce6c10b4d1

View File

@ -21,7 +21,7 @@ var Test = function(options) {
}
this.web3 = new Web3();
this.web3.setProvider(this.sim.provider());
this.web3.setProvider(this.sim.provider(options));
};
Test.prototype.deployAll = function(contractsConfig, cb) {