test touch-up.

pull/1092/head
Kieran Prasch 2019-07-11 14:28:34 -07:00
parent 4369c0dd96
commit 6326340151
No known key found for this signature in database
GPG Key ID: 199AB839D4125A62
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ def test_geth_EIP_191_client_signature_integration(geth_dev_node):
pytest.skip("Do not run Geth nodes in CI")
# Start a geth process
blockchain = BlockchainInterface(provider_process=geth_dev_node, sync_now=False)
blockchain = BlockchainInterface(provider_process=geth_dev_node)
blockchain.connect(fetch_registry=False, sync_now=False)
# Sign a message (RPC) and verify it.

View File

@ -88,7 +88,7 @@ def test_transacting_power_sign_transaction(testerchain):
# Try signing with missing transaction fields
del transaction_dict['gas']
del transaction_dict['nonce']
with pytest.raises(TransactingPower.InvalidSigningRequest):
with pytest.raises(TypeError):
power.sign_transaction(unsigned_transaction=transaction_dict)
# Try signing with a re-locked account.