From d5b7560de5e4a35c1e1d4256e794ed3737ef9a09 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 20 Jan 2023 19:52:08 +0200 Subject: [PATCH] tests: Clear sae_groups in pasn_sae_kdk This test case could have failed when executed after a test case that had forced a specific set of SAE groups. Signed-off-by: Jouni Malinen --- tests/hwsim/test_pasn.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/hwsim/test_pasn.py b/tests/hwsim/test_pasn.py index 6f7a806f5..e86e01f83 100644 --- a/tests/hwsim/test_pasn.py +++ b/tests/hwsim/test_pasn.py @@ -309,6 +309,7 @@ def test_pasn_sae_kdk(dev, apdev): hapd = start_pasn_ap(apdev[0], params) dev[0].set("force_kdk_derivation", "1") + dev[0].set("sae_groups", "") dev[0].set("sae_pwe", "2") dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE", scan_freq="2412")