Message ID | 20201110225544.1876-7-stephen@networkplumber.org (mailing list archive) |
---|---|
State | Superseded, archived |
Delegated to: | Thomas Monjalon |
Headers | show |
Series | replace blacklist/whitelist with allow/block | expand |
Context | Check | Description |
---|---|---|
ci/checkpatch | warning | coding style issues |
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>
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: