auto-t: increase wait time for blacklist test

This test was not reliably passing. Busy waiting is not really reliable,
but in this specific case its really the only option as the blacklist
must expire based on time.
This commit is contained in:
James Prestwood 2020-07-08 10:48:00 -07:00 committed by Denis Kenzior
parent 70824d7b5a
commit 38c8fe06a4
1 changed files with 5 additions and 3 deletions

View File

@ -48,9 +48,11 @@ class Test(unittest.TestCase):
psk_agent = PSKAgent("secret123")
wd.register_psk_agent(psk_agent)
devices = wd.list_devices(1)
devices = wd.list_devices(2)
device = devices[0]
devices[1].disconnect()
condition = 'not obj.scanning'
wd.wait_for_object_condition(device, condition)
@ -110,8 +112,8 @@ class Test(unittest.TestCase):
# Wait for the blacklist to expire (10 seconds)
elapsed = time.time() - start
if elapsed < 11:
time.sleep(11 - elapsed)
if elapsed < 15:
wd.wait(15 - elapsed)
device.disconnect()