auto-t: fix testBSSBlacklist typo

The property is 'enabled' not 'enable'
This commit is contained in:
James Prestwood 2022-03-31 16:16:36 -07:00 committed by Denis Kenzior
parent 9e2b0e75b1
commit 1e56898606
1 changed files with 3 additions and 3 deletions

View File

@ -110,11 +110,11 @@ class Test(unittest.TestCase):
# Have both APs drop all packets, both should get blacklisted
rule0.drop = True
rule0.enable = True
rule0.enabled = True
rule1.drop = True
rule1.enable = True
rule1.enabled = True
rule2.drop = True
rule2.enable = True
rule2.enabled = True
with self.assertRaises(iwd.FailedEx):
ordered_network.network_object.connect()