summaryrefslogtreecommitdiff
path: root/python/subunit/tests/test_subunit_filter.py
diff options
context:
space:
mode:
authorStephen Finucane <stephenfin@redhat.com>2021-12-15 10:18:17 +0000
committerStephen Finucane <stephenfin@redhat.com>2021-12-15 10:38:24 +0000
commit01682c1dcfd5fa92f08c00437fadb4650b8d4bf9 (patch)
treea4ba51740bf8bd1d145b0469b8d5109262570d34 /python/subunit/tests/test_subunit_filter.py
parent6340268cad342f41c357604535c842f5df1d4a10 (diff)
downloadsubunit-git-01682c1dcfd5fa92f08c00437fadb4650b8d4bf9.tar.gz
Remove logic for Python < 3.6
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Diffstat (limited to 'python/subunit/tests/test_subunit_filter.py')
-rw-r--r--python/subunit/tests/test_subunit_filter.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/python/subunit/tests/test_subunit_filter.py b/python/subunit/tests/test_subunit_filter.py
index baef3f6..364fad9 100644
--- a/python/subunit/tests/test_subunit_filter.py
+++ b/python/subunit/tests/test_subunit_filter.py
@@ -300,10 +300,6 @@ xfail todo
('stopTest', 'foo - renamed')],
[(ev[0], ev[1].id()) for ev in result._events])
- if sys.version_info < (2, 7):
- # These tests require Python >=2.7.
- del test_fixup_expected_failures, test_fixup_expected_errors, test_fixup_unexpected_success
-
class TestFilterCommand(TestCase):