Commit 3bdc89f1 authored by Jim Fulton's avatar Jim Fulton

reverting test change to fix spurious failure

That I can no longer reproduce.

NFC
parent 573803d0
...@@ -2408,12 +2408,12 @@ def wont_downgrade_due_to_prefer_final(): ...@@ -2408,12 +2408,12 @@ def wont_downgrade_due_to_prefer_final():
... parts = ... parts =
... ''') ... ''')
>>> [v] = [str(l.split('= >=', 1)[1].strip()) >>> [v] = [l.split('= >=', 1)[1].strip()
... for l in system(buildout+' -vv').split('\n') ... for l in system(buildout+' -vv').split('\n')
... if l.startswith('zc.buildout = >=')] ... if l.startswith('zc.buildout = >=')]
>>> v == str(pkg_resources.working_set.find( >>> v == pkg_resources.working_set.find(
... pkg_resources.Requirement.parse('zc.buildout') ... pkg_resources.Requirement.parse('zc.buildout')
... ).version) ... ).version
True True
>>> write('buildout.cfg', >>> write('buildout.cfg',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment