tests: Fix wait duration
Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
dbca75f82a
commit
4d7d61b689
1 changed files with 1 additions and 1 deletions
|
@ -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():
|
||||
|
|
Loading…
Reference in a new issue