From 6a4fffe6dacc18b6b014f5cf9bd9b46e6ebedd64 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 20 Oct 2021 13:53:28 -0700 Subject: [PATCH] auto-t: update blacklist test to use 'enable' on rules --- autotests/testBSSBlacklist/connection_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autotests/testBSSBlacklist/connection_test.py b/autotests/testBSSBlacklist/connection_test.py index bfcf0523..6a12174d 100644 --- a/autotests/testBSSBlacklist/connection_test.py +++ b/autotests/testBSSBlacklist/connection_test.py @@ -110,8 +110,11 @@ class Test(unittest.TestCase): # Have both APs drop all packets, both should get blacklisted rule0.drop = True + rule0.enable = True rule1.drop = True + rule1.enable = True rule2.drop = True + rule2.enable = True with self.assertRaises(iwd.FailedEx): ordered_network.network_object.connect()