auto-t: use full_scan=True on testBSSBlacklist

This test was missed during the test-wide change.
This commit is contained in:
James Prestwood 2022-03-30 14:17:59 -07:00 committed by Denis Kenzior
parent fa366c79e4
commit 040b8c2d5f
1 changed files with 3 additions and 3 deletions

View File

@ -101,7 +101,7 @@ class Test(unittest.TestCase):
devices = wd.list_devices(1)
device = devices[0]
ordered_network = device.get_ordered_network("TestBlacklist")
ordered_network = device.get_ordered_network("TestBlacklist", full_scan=True)
self.assertEqual(ordered_network.type, NetworkType.psk)
@ -148,7 +148,7 @@ class Test(unittest.TestCase):
devices = wd.list_devices(1)
device = devices[0]
ordered_network = device.get_ordered_network("TestBlacklist")
ordered_network = device.get_ordered_network("TestBlacklist", full_scan=True)
self.assertEqual(ordered_network.type, NetworkType.psk)
@ -188,7 +188,7 @@ class Test(unittest.TestCase):
devices[1].disconnect()
ordered_network = device.get_ordered_network("TestBlacklist")
ordered_network = device.get_ordered_network("TestBlacklist", full_scan=True)
self.assertEqual(ordered_network.type, NetworkType.psk)