--- autotests/testEAP/connection_test.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autotests/testEAP/connection_test.py b/autotests/testEAP/connection_test.py index f072845b..fe048b48 100644 --- a/autotests/testEAP/connection_test.py +++ b/autotests/testEAP/connection_test.py @@ -11,6 +11,8 @@ from iwd import PSKAgent from hlrauc import AuthCenter from ofono import Ofono from config import ctx +from hostapd import HostapdCLI + import testutil import traceback @@ -50,6 +52,8 @@ class Test(unittest.TestCase): testutil.test_iface_operstate() testutil.test_ifaces_connected() + self.hostapd.eapol_reauth(device.address) + if secrets: wd.unregister_psk_agent(psk_agent) @@ -251,6 +255,7 @@ class Test(unittest.TestCase): @classmethod def setUpClass(cls): cls.wd = IWD() + cls.hostapd = HostapdCLI() @classmethod def tearDownClass(cls): -- 2.34.1