Commit 4e337224 authored by Gabriel Monnerat's avatar Gabriel Monnerat

fix syntax

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk/utils@42070 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b10c46b5
......@@ -55,8 +55,8 @@ class TestOOHandler(CloudoooTestCase):
def _assert_document_output(self, document_output_url, msg):
"""Check if the document was created correctly"""
command_list = ["file", "-b", document_output_url]
stdout, stderr = Popen(command_list
stdout=PIPE).communicate()
stdout, stderr = Popen(command_list,
stdout=PIPE).communicate()
self.assertEquals(msg in stdout,
True,
"\nStdout: %sMsg: %s" % (stdout, msg))
......
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