Commit 61a6d7bc authored by Xavier Thompson's avatar Xavier Thompson

[fix] Fix invalid specifier in test

Pinning zc.buildout = >.1 is now invalid, so use >0.1 instead.
parent eedda83d
...@@ -2893,12 +2893,12 @@ def wont_downgrade_due_to_prefer_final(): ...@@ -2893,12 +2893,12 @@ def wont_downgrade_due_to_prefer_final():
... [buildout] ... [buildout]
... parts = ... parts =
... [versions] ... [versions]
... zc.buildout = >.1 ... zc.buildout = >0.1
... ''') ... ''')
>>> [str(l.split('= >', 1)[1].strip()) >>> [str(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 =')]
['.1'] ['0.1']
>>> 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