From: Jouni Malinen Date: Sun, 23 Dec 2018 10:13:04 +0000 (+0200) Subject: tests: Fix AP wait in ap_require_ht and ap_require_ht_limited_rates X-Git-Tag: hostap_2_8~726 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=95cd50a1ede52b9759f65e203512166232ceebe5;p=thirdparty%2Fhostap.git tests: Fix AP wait in ap_require_ht and ap_require_ht_limited_rates These test cases seemed to have copy-paste errors where wait_enabled=False was forgotten even though there was no additional steps checking the AP mode startup results. This did not break the tests, but could have resulted in slowing them down if the STAs did not find the AP in the first scan. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_ht.py b/tests/hwsim/test_ap_ht.py index a46ff0806..59b4ac679 100644 --- a/tests/hwsim/test_ap_ht.py +++ b/tests/hwsim/test_ap_ht.py @@ -833,7 +833,7 @@ def test_ap_require_ht(dev, apdev): """Require HT""" params = { "ssid": "require-ht", "require_ht": "1" } - hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False) + hapd = hostapd.add_ap(apdev[0], params) dev[1].connect("require-ht", key_mgmt="NONE", scan_freq="2412", disable_ht="1", wait_connect=False) @@ -867,7 +867,7 @@ def test_ap_require_ht_limited_rates(dev, apdev): params = { "ssid": "require-ht", "supported_rates": "60 120 240 360 480 540", "require_ht": "1" } - hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False) + hapd = hostapd.add_ap(apdev[0], params) dev[1].connect("require-ht", key_mgmt="NONE", scan_freq="2412", disable_ht="1", wait_connect=False)