From 1c6df9db8d7e8618202c7787ff96885a2c8cfd39 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Thu, 7 Jun 2018 20:05:56 -0400 Subject: [PATCH] remove data parameter --- lib/tests/run_tests.js | 1 - test_apps/test_app/test/simple_storage_deploy_spec.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/tests/run_tests.js b/lib/tests/run_tests.js index baaedd0b..eb31209a 100644 --- a/lib/tests/run_tests.js +++ b/lib/tests/run_tests.js @@ -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(); }); diff --git a/test_apps/test_app/test/simple_storage_deploy_spec.js b/test_apps/test_app/test/simple_storage_deploy_spec.js index b44aa064..b74acc33 100644 --- a/test_apps/test_app/test/simple_storage_deploy_spec.js +++ b/test_apps/test_app/test/simple_storage_deploy_spec.js @@ -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 () {