Skip to content

Commit

Permalink
black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
F4ever committed Oct 3, 2023
1 parent b6d9171 commit c5e81eb
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions tests/web3_extentions/test_tx_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,16 @@ def test_find_transaction_timeout(web3, tx_utils, tx, account, monkeypatch):

assert not web3.transaction._handle_sent_transaction('0x000001')

web3.eth.wait_for_transaction_receipt = Mock(return_value={
'blockHash': b'',
'blockNumber': '',
'gasUsed': '',
'effectiveGasPrice': '',
'status': '',
'transactionHash': b'',
'transactionIndex': '',
})
web3.eth.wait_for_transaction_receipt = Mock(
return_value={
'blockHash': b'',
'blockNumber': '',
'gasUsed': '',
'effectiveGasPrice': '',
'status': '',
'transactionHash': b'',
'transactionIndex': '',
}
)

assert web3.transaction._handle_sent_transaction('0x000001')

0 comments on commit c5e81eb

Please sign in to comment.