summaryrefslogtreecommitdiff
path: root/test_six.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-22 10:06:10 -0500
committerBenjamin Peterson <benjamin@python.org>2015-01-22 10:06:10 -0500
commit7c7e6c67f4180fb7bd44611d16566a5fb24dd48d (patch)
treed67fb174c8dfc3ae2e562d46bf555155e523e76a /test_six.py
parent4f20ac8e8abfb615febae81e3688cdcc43f57d50 (diff)
downloadsix-git-7c7e6c67f4180fb7bd44611d16566a5fb24dd48d.tar.gz
fix tests on Python 3.1 (fixes #113)
Patch by Arfrever Frehtes Taifersar Arahesis.
Diffstat (limited to 'test_six.py')
-rw-r--r--test_six.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_six.py b/test_six.py
index 76a8ccb..f33f882 100644
--- a/test_six.py
+++ b/test_six.py
@@ -799,7 +799,7 @@ def test_add_metaclass():
assert type(MySlotsWeakref) is Meta
-@py.test.mark.skipif("sys.version_info[:2] < (2, 7)")
+@py.test.mark.skipif("sys.version_info[:2] < (2, 7) or sys.version_info[:2] in ((3, 0), (3, 1))")
def test_assertCountEqual():
class TestAssertCountEqual(unittest.TestCase):
def test(self):