Parcourir la source

tests: Fix wait duration

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen il y a 12 ans
Parent
commit
4d7d61b689
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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():