From c5e81eb8c0a03bcf903295d2e27d9b37eb1643fe Mon Sep 17 00:00:00 2001 From: F4ever <1590415904a@gmail.com> Date: Tue, 3 Oct 2023 18:25:10 +0200 Subject: [PATCH] black formatting --- tests/web3_extentions/test_tx_utils.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/tests/web3_extentions/test_tx_utils.py b/tests/web3_extentions/test_tx_utils.py index e8ff2a945..7b82a1909 100644 --- a/tests/web3_extentions/test_tx_utils.py +++ b/tests/web3_extentions/test_tx_utils.py @@ -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')