Commit 5fb2dc32 authored by Ivan Tyagov's avatar Ivan Tyagov

Increase time for converting OOoDocument -> PDF -> Image to more reasonable...

Increase time for converting OOoDocument -> PDF -> Image to more reasonable value so we do not get false test failures and still make sure it happens in somehow acceptable time (it's cached after first calculation).

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38590 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5d76e133
......@@ -2201,7 +2201,7 @@ class TestDocumentPerformance(TestDocumentMixin):
after = time.time()
req_time = (after - before)
# we should have image converted in less than 20s
self.assertTrue(req_time < 20.0)
self.assertTrue(req_time < 30.0)
def test_suite():
suite = unittest.TestSuite()
......
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