Skip to content

Commit 9015d11

Browse files
author
MarcoFalke
committed
Merge bitcoin/bitcoin#23774: tests: Add missing assert_equal import to p2p_add_connections.py
efa115a tests: Add missing assert_equal import to p2p_add_connections.py (Andrew Chow) Pull request description: ACKs for top commit: MarcoFalke: code review ACK efa115a and apologies for missing the silent merge conflict in merge commit 9635760 Tree-SHA512: e5782f9883f37265db4e1977b5df82cc689fb99080cc92888b425937da75050a49a8e196b857333c5382567b5c0439d54ef72f5556aca8de5c1bffdf7b2f8b8b
2 parents 9635760 + efa115a commit 9015d11

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/functional/p2p_add_connections.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66

77
from test_framework.p2p import P2PInterface
88
from test_framework.test_framework import BitcoinTestFramework
9-
from test_framework.util import check_node_connections
9+
from test_framework.util import (
10+
assert_equal,
11+
check_node_connections,
12+
)
1013

1114
class P2PFeelerReceiver(P2PInterface):
1215
def on_version(self, message):

0 commit comments

Comments
 (0)