From 0dd5f02c6c5781d37f42c8ebf80defdb6444a746 Mon Sep 17 00:00:00 2001 From: Samuel Furter Date: Mon, 1 Apr 2019 11:58:24 +0200 Subject: [PATCH] missing semicolon added --- .../tests/src/methods/ContractDeployMethodTest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web3-eth-contract/tests/src/methods/ContractDeployMethodTest.js b/packages/web3-eth-contract/tests/src/methods/ContractDeployMethodTest.js index 0559e549780..7ef3388a327 100644 --- a/packages/web3-eth-contract/tests/src/methods/ContractDeployMethodTest.js +++ b/packages/web3-eth-contract/tests/src/methods/ContractDeployMethodTest.js @@ -35,7 +35,7 @@ describe('ContractDeployMethodTest', () => { }); it('calls beforeExecution and does nothing because it got signed locally', () => { - contractDeployMethod.rpcMethod = 'eth_sendRawTransaction' + contractDeployMethod.rpcMethod = 'eth_sendRawTransaction'; contractDeployMethod.parameters = [{to: true}]; contractDeployMethod.beforeExecution(contractMock);