Commit 9090539c authored by Gabriel Monnerat's avatar Gabriel Monnerat

refactor because if Fault exception is raised, data_output is not created

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk/utils@42198 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a208b8fd
......@@ -77,10 +77,10 @@ class TestAllFormats(CloudoooTestCase):
data_output = self.proxy.convertFile(encodestring(data),
source_format,
extension[0])
magic_result = file_detector.from_buffer(decodestring(data_output))
self.assertEquals(magic_result.endswith(": empty"), False, magic_result)
except Fault, err:
fault_list.append((source_format, extension[0], err.faultString))
magic_result = file_detector.from_buffer(decodestring(data_output))
self.assertEquals(magic_result.endswith(": empty"), False, magic_result)
if fault_list != []:
self.fail(fault_list)
......
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