remove data parameter
This commit is contained in:
parent
c1590d0b48
commit
1c6df9db8d
|
@ -83,7 +83,6 @@ module.exports = {
|
|||
mocha.suite.timeout(0);
|
||||
|
||||
mocha.suite.beforeAll('Wait for deploy', (done) => {
|
||||
console.dir("runnning wait for deploy");
|
||||
global.embark.onReady(() => {
|
||||
done();
|
||||
});
|
||||
|
|
|
@ -16,7 +16,7 @@ contract("SimpleStorage Deploy", function () {
|
|||
let SimpleStorageInstance;
|
||||
|
||||
before(async function() {
|
||||
SimpleStorageInstance = await SimpleStorage.deploy({data: SimpleStorage.options.data, arguments: [150]}).send();
|
||||
SimpleStorageInstance = await SimpleStorage.deploy({arguments: [150]}).send();
|
||||
});
|
||||
|
||||
it("should set constructor value", async function () {
|
||||
|
|
Loading…
Reference in New Issue