From 71e276f90f0c708953d44a0d881d1d78f73d9db3 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 25 Oct 2019 14:31:01 +0300 Subject: [PATCH] tests: Fix copy-paste issues in SAE H2E group tests These test cases were all using group 21 even though they were supposed to go through all the possible groups. Signed-off-by: Jouni Malinen --- tests/hwsim/test_sae.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/hwsim/test_sae.py b/tests/hwsim/test_sae.py index 2f612dfe7..dad77cece 100644 --- a/tests/hwsim/test_sae.py +++ b/tests/hwsim/test_sae.py @@ -1723,24 +1723,24 @@ def test_sae_pwe_group_21(dev, apdev): run_sae_pwe_group(dev, apdev, 21) def test_sae_pwe_group_25(dev, apdev): - """SAE PWE derivation options with group 21""" - run_sae_pwe_group(dev, apdev, 21) + """SAE PWE derivation options with group 25""" + run_sae_pwe_group(dev, apdev, 25) def test_sae_pwe_group_26(dev, apdev): - """SAE PWE derivation options with group 21""" - run_sae_pwe_group(dev, apdev, 21) + """SAE PWE derivation options with group 26""" + run_sae_pwe_group(dev, apdev, 26) def test_sae_pwe_group_28(dev, apdev): - """SAE PWE derivation options with group 21""" - run_sae_pwe_group(dev, apdev, 21) + """SAE PWE derivation options with group 28""" + run_sae_pwe_group(dev, apdev, 28) def test_sae_pwe_group_29(dev, apdev): - """SAE PWE derivation options with group 21""" - run_sae_pwe_group(dev, apdev, 21) + """SAE PWE derivation options with group 29""" + run_sae_pwe_group(dev, apdev, 29) def test_sae_pwe_group_30(dev, apdev): - """SAE PWE derivation options with group 21""" - run_sae_pwe_group(dev, apdev, 21) + """SAE PWE derivation options with group 30""" + run_sae_pwe_group(dev, apdev, 30) def test_sae_pwe_group_1(dev, apdev): """SAE PWE derivation options with group 1"""