Skip to content

Commit 613e221

Browse files
committed
test: remove unnecessary parens
1 parent e939cf2 commit 613e221

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/feature_minchainwork.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def run_test(self):
8282
msg.hashstop = 0
8383
peer.send_and_ping(msg)
8484
time.sleep(5)
85-
assert ("headers" not in peer.last_message or len(peer.last_message["headers"].headers) == 0)
85+
assert "headers" not in peer.last_message or len(peer.last_message["headers"].headers) == 0
8686

8787
self.log.info("Generating one more block")
8888
self.generate(self.nodes[0], 1)

0 commit comments

Comments
 (0)