From: Jouni Malinen Date: Sat, 6 Feb 2021 10:08:43 +0000 (+0200) Subject: tests: he_tkip to match implementation change X-Git-Tag: hostap_2_10~647 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32cb91549e40152c91e5be33020d4b814a451457;p=thirdparty%2Fhostap.git tests: he_tkip to match implementation change HE is now getting disabled just like HT and VHT when only TKIP is enabled. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_he.py b/tests/hwsim/test_he.py index d062f512c..d8a13fe5a 100644 --- a/tests/hwsim/test_he.py +++ b/tests/hwsim/test_he.py @@ -1005,7 +1005,7 @@ def test_he_tkip(dev, apdev): raise Exception("Unexpected STATUS ieee80211n value") if status["ieee80211ac"] != "0": raise Exception("Unexpected STATUS ieee80211ac value") - if status["ieee80211ax"] != "1": + if status["ieee80211ax"] != "0": raise Exception("Unexpected STATUS ieee80211ax value") if status["secondary_channel"] != "0": raise Exception("Unexpected STATUS secondary_channel value")