From 6f359f5e59fb70a07bdb744c210c3cebf68f929f Mon Sep 17 00:00:00 2001 From: Jason Madden <jamadden@gmail.com> Date: Fri, 17 Apr 2020 13:54:24 -0500 Subject: [PATCH] Sense of the test was wrong. --- src/gevent/tests/known_failures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gevent/tests/known_failures.py b/src/gevent/tests/known_failures.py index 9c46e1cd..dde5851d 100644 --- a/src/gevent/tests/known_failures.py +++ b/src/gevent/tests/known_failures.py @@ -503,7 +503,7 @@ def populate(): # pylint:disable=too-many-branches # TODO: Verify that this doesn't match more than once. if condition: TEST_FILE_OPTIONS.setdefault(test_name, {})[opt_name] = value - if not action.when: + if action.when: if isinstance(action, Ignored): IGNORED_TESTS.append(test_name) elif isinstance(action, Flaky): -- 2.30.9