From c097f12c8fed0f1475c5abd14393b1710b287733 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Tue, 5 Mar 2019 17:13:35 +0200 Subject: [PATCH] tests: Enable needed SAE groups explicitly in sae_oom_wpas Configure the sae_groups parameter for hostapd explicitly in preparation for the default value change in the implementation. Signed-off-by: Jouni Malinen --- tests/hwsim/test_sae.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/hwsim/test_sae.py b/tests/hwsim/test_sae.py index 0e94d95ff..f27042ea1 100644 --- a/tests/hwsim/test_sae.py +++ b/tests/hwsim/test_sae.py @@ -474,6 +474,7 @@ def test_sae_oom_wpas(dev, apdev): params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678") params['wpa_key_mgmt'] = 'SAE' + params['sae_groups'] = '19 25 26' hapd = hostapd.add_ap(apdev[0], params) dev[0].request("SET sae_groups 25")