From: Andrei Otcheretianski Date: Wed, 15 Feb 2023 23:09:02 +0000 (+0200) Subject: tests: Clear sae_groups in eht_sae test X-Git-Tag: hostap_2_11~1248 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fa4d7be5bf4ea474fdc1ceaac31d970d2bf7f9d9;p=thirdparty%2Fhostap.git tests: Clear sae_groups in eht_sae test Otherwise subsequent tests may fail. Signed-off-by: Andrei Otcheretianski --- diff --git a/tests/hwsim/test_eht.py b/tests/hwsim/test_eht.py index ae078ee5b..ebc846c0d 100644 --- a/tests/hwsim/test_eht.py +++ b/tests/hwsim/test_eht.py @@ -90,6 +90,7 @@ def test_eht_sae(dev, apdev): pairwise="GCMP-256", group="GCMP-256", group_mgmt="BIP-GMAC-256", scan_freq="2412") finally: + dev[0].set("sae_groups", "") dev[0].set("sae_pwe", "0") def test_eht_sae_mlo(dev, apdev): @@ -115,4 +116,5 @@ def test_eht_sae_mlo(dev, apdev): if "status_code=15" not in ev: raise Exception("Unexpected authentication failure: " + ev) finally: + dev[0].set("sae_groups", "") dev[0].set("sae_pwe", "0")