From e8006097972ecdb7f638ec82f39a4e4d06cb9fc6 Mon Sep 17 00:00:00 2001 From: euri10 Date: Wed, 10 Aug 2016 09:59:30 +0200 Subject: [PATCH] small typo --- tests/contracts/test_contract_call_interface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/contracts/test_contract_call_interface.py b/tests/contracts/test_contract_call_interface.py index 6991765..d45c191 100644 --- a/tests/contracts/test_contract_call_interface.py +++ b/tests/contracts/test_contract_call_interface.py @@ -22,8 +22,8 @@ def string_contract(web3_tester, StringContract): deploy_txn = StringContract.deploy(arguments=["Caqalai"]) deploy_receipt = web3_tester.eth.getTransactionReceipt(deploy_txn) assert deploy_receipt is not None - _math_contract = StringContract(address=deploy_receipt['contractAddress']) - return _math_contract + _string_contract = StringContract(address=deploy_receipt['contractAddress']) + return _string_contract @pytest.fixture()