summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-04-20 09:25:21 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-04-20 09:25:21 -0400
commit085247fa441f9b0fac05117ca1a3283e3510fb32 (patch)
treeb068b08a093257c4b60b86f6fbf1e164f8e3125a /setuptools/tests
parentdf05ebf3e88858ae7ac74071bd20c86782e1415d (diff)
downloadpython-setuptools-git-085247fa441f9b0fac05117ca1a3283e3510fb32.tar.gz
Use OrderedDict to retain deterministic ordering of version info in egg_info command. Remove lexicographic ordering in setopt.edit_config. Ref #553
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_egg_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py
index d37b127e..7e7dd4a9 100644
--- a/setuptools/tests/test_egg_info.py
+++ b/setuptools/tests/test_egg_info.py
@@ -89,7 +89,7 @@ class TestEggInfo(object):
assert 'tag_svn_revision = 0' in content
if sys.version_info[0:2] >= (2, 7):
- assert re.search('tag_build.*tag_date.*tag_svn_revision',
+ assert re.search('tag_date.*tag_svn_revision.*tag_build',
content,
re.MULTILINE | re.DOTALL) is not None