aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_blockchain.py
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2022-10-04 15:18:42 +0200
committerjonatack <jon@atack.com>2023-01-03 10:59:56 -0800
commit459cb637aca80f744a8399e84bc78fab60de0b5c (patch)
treebcf2240137aed6850656680f64b881ef1b8201f7 /test/functional/rpc_blockchain.py
parentcb552c5f21192d2f8f69c07130928c21301a5e7f (diff)
downloadbitcoin-459cb637aca80f744a8399e84bc78fab60de0b5c.tar.xz
script, test: fix python linter E275 errors with flake8 5.0.4
Diffstat (limited to 'test/functional/rpc_blockchain.py')
-rwxr-xr-xtest/functional/rpc_blockchain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpc_blockchain.py b/test/functional/rpc_blockchain.py
index e9c4abe2a8..19c73eebf0 100755
--- a/test/functional/rpc_blockchain.py
+++ b/test/functional/rpc_blockchain.py
@@ -370,7 +370,7 @@ class BlockchainTest(BitcoinTestFramework):
# hash_type muhash should return a different UTXO set hash.
res6 = node.gettxoutsetinfo(hash_type='muhash')
assert 'muhash' in res6
- assert(res['hash_serialized_2'] != res6['muhash'])
+ assert res['hash_serialized_2'] != res6['muhash']
# muhash should not be returned unless requested.
for r in [res, res2, res3, res4, res5]: