Commit 3d56d478 authored by Rafael Monnerat's avatar Rafael Monnerat

Improve test.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@34198 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 09485948
......@@ -48,9 +48,9 @@ print sys.version_info[:2]
"""
TODO: Add doc string.
"""
stdout, stderr = subprocess.Popen([sys.executable, '-V'],
stdout, stderr = subprocess.Popen(["bin/python2.4", "-V"],
stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
self.assertTrue('2.4' in stderr)
self.assertTrue('Python 2.4' in stderr)
def test_required_libraries(self):
"""
......
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