Commit 624aea18 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 3302acbf
......@@ -2893,12 +2893,12 @@ def wont_downgrade_due_to_prefer_final():
... [buildout]
... parts =
... [versions]
... zc.buildout = >.1
... zc.buildout = >0.1
... ''')
>>> [str(l.split('= >', 1)[1].strip())
... for l in system(buildout+' -vv').split('\n')
... if l.startswith('zc.buildout =')]
['.1']
['0.1']
>>> 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