From 1e56898606cece1ad199a98f1458de879d255aec Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Thu, 31 Mar 2022 16:16:36 -0700 Subject: [PATCH] auto-t: fix testBSSBlacklist typo The property is 'enabled' not 'enable' --- autotests/testBSSBlacklist/connection_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autotests/testBSSBlacklist/connection_test.py b/autotests/testBSSBlacklist/connection_test.py index 8e239f44..9631a322 100644 --- a/autotests/testBSSBlacklist/connection_test.py +++ b/autotests/testBSSBlacklist/connection_test.py @@ -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()