[v10,6/7] auto test comment fix

Message ID 20201110225544.1876-7-stephen@networkplumber.org (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series replace blacklist/whitelist with allow/block |

Checks

Context Check Description
ci/checkpatch warning coding style issues

Commit Message

Stephen Hemminger Nov. 10, 2020, 10:55 p.m. UTC
  ---
 app/test/autotest_runner.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Luca Boccassi Nov. 11, 2020, 10:47 a.m. UTC | #1
On Tue, 2020-11-10 at 14:55 -0800, Stephen Hemminger wrote:
> ---
>  app/test/autotest_runner.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Luca Boccassi <bluca@debian.org>
  

Patch

diff --git a/app/test/autotest_runner.py b/app/test/autotest_runner.py
index 72c40e85fdd2..8aa4d45569db 100644
--- a/app/test/autotest_runner.py
+++ b/app/test/autotest_runner.py
@@ -279,7 +279,7 @@  def __filter_test(self, test):
         if "_autotest" in test_id:
             test_id = test_id[:-len("_autotest")]
 
-        # filter out blocklisted/allowlisted tests
+        # filter out blocked/allowed tests
         if self.blocklist and test_id in self.blocklist:
             return False
         if self.allowlist and test_id not in self.allowlist: