From 010e7dddce40a3cd394a369c13601ce291ccc451 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Wed, 23 Feb 2022 11:15:31 +0200 Subject: [PATCH] tests: Clear sae_groups in sigma_dut_ap_ft_rsnxe_used_mismatch This is needed to avoid test failures when a previous test case might have restricted the set of allowed SAE groups. Signed-off-by: Jouni Malinen --- tests/hwsim/test_sigma_dut.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/hwsim/test_sigma_dut.py b/tests/hwsim/test_sigma_dut.py index 0b81e7f56..8e8384bec 100644 --- a/tests/hwsim/test_sigma_dut.py +++ b/tests/hwsim/test_sigma_dut.py @@ -4900,6 +4900,7 @@ def test_sigma_dut_ap_ft_rsnxe_used_mismatch(dev, apdev, params): with open(conffile, "wb") as f2: f2.write(f.read()) + dev[0].set("sae_groups", "") dev[0].connect("test-sae", key_mgmt="FT-SAE", sae_password="hello", ieee80211w="2", scan_freq="2412")