Skip to content

Commit

Permalink
fixed raced conditions in test runners on new computer with python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
SmithSamuelM committed Feb 7, 2017
1 parent d685215 commit 16a05b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions raet/road/test/test_joining.py
Original file line number Diff line number Diff line change
Expand Up @@ -13317,9 +13317,9 @@ def testFirstJoinAckAcceptDropped(self):

console.terse("\nTest joinent didn't received ack accept, redo timeout *********\n")
beta.join() # join from beta to alpha
self.serviceStacks([beta], duration=0.1) # beta: send join
self.serviceStacks([alpha], duration=0.1) # alpha: process join, send ack
self.serviceStacks([beta], duration=0.1) # beta: send ack accept, remove
self.serviceStacks([beta], duration=0.125) # beta: send join
self.serviceStacks([alpha], duration=0.125) # alpha: process join, send ack
self.serviceStacks([beta], duration=0.125) # beta: send ack accept, remove
self.flushReceives(alpha)
self.serviceStacks(stacks, duration=2.0) # alpha: timeout, redo ack; beta: stale, refuse
self.serviceStacks(stacks, duration=2.0) # alpha: timeout, redo ack; beta: stale, refuse
Expand Down

0 comments on commit 16a05b8

Please sign in to comment.