auto-t: testSAQuery remove ungraceful restart

Instead the same effect can be seen by just ifdown/ifup the interface.
This commit is contained in:
James Prestwood 2021-08-23 11:32:20 -07:00 committed by Denis Kenzior
parent f6683bab75
commit 5776ce87d7
1 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,10 @@ class Test(unittest.TestCase):
# Make AP go down ungracefully, when hostapd comes back up it should
# send an unprotected disassociate frame so the client will re-auth.
# This will kick off the SA Query procedure
hostapd.ungraceful_restart()
hostapd.interface.set_interface_state('down')
hostapd.interface.set_interface_state('up')
hostapd.wait_for_event('INTERFACE-ENABLED')
condition = 'not obj.connected'
wd.wait_for_object_condition(ordered_network.network_object, condition)