test: Remove incorrect and unused try-block in assert_debug_log

This commit is contained in:
MarcoFalke
2019-09-04 13:17:22 -04:00
parent 6e431296da
commit fae91a09c4
2 changed files with 19 additions and 19 deletions

View File

@@ -26,7 +26,7 @@ class SetBanTests(BitcoinTestFramework):
self.nodes[1].setban("127.0.0.1", "add")
# Node 0 should not be able to reconnect
with self.nodes[1].assert_debug_log(expected_msgs=['dropped (banned)\n'],timeout=5):
with self.nodes[1].assert_debug_log(expected_msgs=['dropped (banned)\n'], timeout=5):
self.restart_node(1, [])
self.nodes[0].addnode("127.0.0.1:" + str(p2p_port(1)), "onetry")