summaryrefslogtreecommitdiff
path: root/setuptools
diff options
context:
space:
mode:
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)