aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-10-14 22:43:35 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-10-14 22:43:35 -0400
commit15d10c3655c441beb50fef522b4959fbab4fc3d5 (patch)
treea107748d49985a9004457140d172e5a743dc2985 /setuptools
parent3e3d83ad49e7f45cc8d2f343590f774c41069b74 (diff)
downloadexternal_python_setuptools-15d10c3655c441beb50fef522b4959fbab4fc3d5.tar.gz
external_python_setuptools-15d10c3655c441beb50fef522b4959fbab4fc3d5.tar.bz2
external_python_setuptools-15d10c3655c441beb50fef522b4959fbab4fc3d5.zip
Now running under tox, Python 2.6 gets a non-zero PYTHONHASHSEED, so tests are simpler.
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/tests/test_egg_info.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py
index dff2a8c8..240385a2 100644
--- a/setuptools/tests/test_egg_info.py
+++ b/setuptools/tests/test_egg_info.py
@@ -94,10 +94,6 @@ class TestEggInfo(object):
Assert that the strings in expected appear in content
in order.
"""
- if sys.version_info < (2, 7):
- # On Python 2.6, expect dict key order.
- expected = dict.fromkeys(expected).keys()
-
pattern = '.*'.join(expected)
flags = re.MULTILINE | re.DOTALL
assert re.search(pattern, content, flags)