diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 22:43:35 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 22:43:35 -0400 |
| commit | 15d10c3655c441beb50fef522b4959fbab4fc3d5 (patch) | |
| tree | a107748d49985a9004457140d172e5a743dc2985 /setuptools | |
| parent | 3e3d83ad49e7f45cc8d2f343590f774c41069b74 (diff) | |
| download | external_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.py | 4 |
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) |
