auto-t: update rekey() use to not wait for event

The hostapd event wait was moved into rekey() itself.
This commit is contained in:
James Prestwood 2021-10-07 13:49:57 -07:00 committed by Denis Kenzior
parent 119de8ec55
commit 48e7c0bd50
4 changed files with 0 additions and 4 deletions

View File

@ -56,7 +56,6 @@ class Test(unittest.TestCase):
testutil.test_ifaces_connected(device.name, hapd.ifname)
hapd.rekey(device.address)
hapd.wait_for_event('EAPOL-4WAY-HS-COMPLETED')
device.disconnect()

View File

@ -56,7 +56,6 @@ class Test(unittest.TestCase):
testutil.test_ifaces_connected(device.name, hapd.ifname)
hapd.rekey(device.address)
hapd.wait_for_event('EAPOL-4WAY-HS-COMPLETED')
device.disconnect()

View File

@ -96,7 +96,6 @@ class Test(unittest.TestCase):
(self.bss_hostapd[0].ifname, device.name, True, True))
self.bss_hostapd[1].rekey(device.address)
self.bss_hostapd[1].wait_for_event('EAPOL-4WAY-HS-COMPLETED')
def test_fils_ft_roam_sha256(self):
wd = IWD(True)

View File

@ -81,7 +81,6 @@ class Test(unittest.TestCase):
(self.bss_hostapd[0].ifname, device.name, True, True))
self.bss_hostapd[1].rekey(device.address)
self.bss_hostapd[1].wait_for_event('EAPOL-4WAY-HS-COMPLETED')
device.roam(self.bss_hostapd[0].bssid)