diff --git a/autotests/testSAE/timeout_test.py b/autotests/testSAE/timeout_test.py index 1792f1c0..6f757edb 100644 --- a/autotests/testSAE/timeout_test.py +++ b/autotests/testSAE/timeout_test.py @@ -42,6 +42,8 @@ class Test(unittest.TestCase): # hostapd = HostapdCLI(config='ssidSAE.conf') hostapd.set_value('vendor_elements', 'dd0cf4f5e8050500000000000000') + hostapd.set_value('sae_groups', '19') + hostapd.reload() hwsim = Hwsim() bss_radio = hwsim.get_radio('rad0') @@ -50,6 +52,8 @@ class Test(unittest.TestCase): rule0.source = bss_radio.addresses[0] rule0.drop = True rule0.prefix = 'b0' + rule0.match = '01 00 00 00 13 00' + rule0.match_offset = 26 rule0.match_times = 1 rule0.drop_ack = True rule0.enabled = True @@ -57,6 +61,8 @@ class Test(unittest.TestCase): wd = IWD(True) self.validate_connection(wd) + rule0.remove() + @classmethod def setUpClass(cls): pass