Skip to content

Commit

Permalink
Dramatically increase network settling time
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass authored Jun 26, 2016
1 parent 4676dd6 commit 7991eb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py_src/test/test_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ def test_propagation(iters=3):
nodes.append(new_node)
time.sleep(0.5)
nodes[0].send(b"hello")
time.sleep(0.5)
time.sleep(2)
print(nodes[0].id)
for node in nodes[1:]:
print(node.status)
assert b"hello" == node.recv().packets[1]
# Failure is either no message received: AttributeError
# message doesn't match: AssertionError
del nodes[:]
del nodes[:]

0 comments on commit 7991eb5

Please sign in to comment.