Browse Source

tests: Fix wait duration

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 12 years ago
parent
commit
4d7d61b689
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/hwsim/wpasupplicant.py

+ 1 - 1
tests/hwsim/wpasupplicant.py

@@ -205,7 +205,7 @@ class WpaSupplicant:
 
     def wait_event(self, events, timeout):
         count = 0
-        while count < timeout * 2:
+        while count < timeout * 10:
             count = count + 1
             time.sleep(0.1)
             while self.mon.pending():