3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-22 06:29:23 +01:00

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

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()