From: Jouni Malinen Date: Mon, 19 Dec 2016 20:47:07 +0000 (+0200) Subject: tests: Disable HT in ap_wds_sta_wep X-Git-Tag: hostap_2_7~1986 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad02e79d12fd70ed6bd5fbaf64001a2851e5bb7b;p=thirdparty%2Fhostap.git tests: Disable HT in ap_wds_sta_wep HT cannot be used with WEP-only network, so don't try to do that here. This get rids of some unnecessary Beacon frame updates during disassociation/association and can make the test case a bit more robust. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_params.py b/tests/hwsim/test_ap_params.py index 395135180..e0d402297 100644 --- a/tests/hwsim/test_ap_params.py +++ b/tests/hwsim/test_ap_params.py @@ -226,6 +226,7 @@ def test_ap_wds_sta_wep(dev, apdev): ssid = "test-wds-wep" params = {} params['ssid'] = ssid + params["ieee80211n"] = "0" params['wep_key0'] = '"hello"' params['wds_sta'] = "1" params['wds_bridge'] = "wds-br0"