diff options
author | Andrew Chow <achow101-github@achow101.com> | 2021-12-14 12:28:25 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-12-14 12:28:25 -0500 |
commit | efa115aa4a388238f853a34e256fca2667e5a548 (patch) | |
tree | 75329be23a696dfc5009626e03c259648bfe255d | |
parent | 9635760ce85e01dbf21c93cc971515a2c4aead88 (diff) |
tests: Add missing assert_equal import to p2p_add_connections.py
-rwxr-xr-x | test/functional/p2p_add_connections.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/p2p_add_connections.py b/test/functional/p2p_add_connections.py index 2d6c03b675..d919ed7bd3 100755 --- a/test/functional/p2p_add_connections.py +++ b/test/functional/p2p_add_connections.py @@ -6,7 +6,10 @@ from test_framework.p2p import P2PInterface from test_framework.test_framework import BitcoinTestFramework -from test_framework.util import check_node_connections +from test_framework.util import ( + assert_equal, + check_node_connections, +) class P2PFeelerReceiver(P2PInterface): def on_version(self, message): |