From ee1b9bef000b7fb42a452faf06c6748a59ac02c7 Mon Sep 17 00:00:00 2001 From: brunoerg Date: Mon, 2 Dec 2024 18:38:30 -0300 Subject: [PATCH] test: replace `is not` to `!=` when comparing block hash --- test/functional/p2p_compactblocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/p2p_compactblocks.py b/test/functional/p2p_compactblocks.py index 49cf26d425c..5a56b8d3b11 100755 --- a/test/functional/p2p_compactblocks.py +++ b/test/functional/p2p_compactblocks.py @@ -738,7 +738,7 @@ class CompactBlocksTest(BitcoinTestFramework): test_node.send_and_ping(msg) # Check that the tip didn't advance - assert int(node.getbestblockhash(), 16) is not block.sha256 + assert int(node.getbestblockhash(), 16) != block.sha256 test_node.sync_with_ping() # Helper for enabling cb announcements