From ce6c10b4d17cbe05c7501585aaf3a93d2fad83cd Mon Sep 17 00:00:00 2001 From: Daniel Benton Date: Sat, 4 Feb 2017 22:57:46 -0500 Subject: [PATCH] Actually use the fucking `options` object when setting up tests --- lib/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/test.js b/lib/test.js index 62d90b62..7f5661af 100644 --- a/lib/test.js +++ b/lib/test.js @@ -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) {