From: Jouni Malinen Date: Sat, 16 Mar 2013 09:21:22 +0000 (+0200) Subject: tests: Fix wait duration X-Git-Tag: aosp-kk-from-upstream~460 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4d7d61b68911c692e7a78f9f3b1050e8981b054f;p=thirdparty%2Fhostap.git tests: Fix wait duration Signed-hostap: Jouni Malinen --- diff --git a/tests/hwsim/wpasupplicant.py b/tests/hwsim/wpasupplicant.py index 05bd531ea..3f7de95ac 100644 --- a/tests/hwsim/wpasupplicant.py +++ b/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():