This commit is contained in:
Piper Merriam 2016-07-16 07:58:47 -06:00
parent 354c4d3715
commit bb97d429a9
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ def test_needs_skipping(web3):
if not isinstance(web3.currentProvider, TestRPCProvider):
pytest.skip("N/A")
with pytest.raises(ValueError):
web3.eth.estimateGas()
web3.eth.estimateGas({})
def test_contract_estimateGas(web3, math_contract):

View File

@ -35,7 +35,7 @@ def test_needs_skipping(web3):
if not isinstance(web3.currentProvider, TestRPCProvider):
pytest.skip("N/A")
with pytest.raises(ValueError):
web3.eth.estimateGas()
web3.eth.estimateGas({})
def test_eth_estimateGas(web3, math_contract):