forked from LBRYCommunity/lbry-sdk
fix dht node test
This commit is contained in:
parent
34fc530fba
commit
7a72409b61
1 changed files with 1 additions and 1 deletions
|
@ -160,5 +160,5 @@ class TestTemporarilyLosingConnection(AsyncioTestCase):
|
|||
await advance(1000)
|
||||
await wait_for(
|
||||
lambda: len(node.protocol.routing_table.get_peers()) >= num_seeds,
|
||||
lambda: self.assertTrue(len(node.protocol.routing_table.get_peers()) >= num_seeds)
|
||||
lambda: self.assertGreaterEqual(len(node.protocol.routing_table.get_peers()), num_seeds)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue