From 5fb2dc3225d7412bbe5fd8d624708cd8d183aede Mon Sep 17 00:00:00 2001 From: Ivan Tyagov <ivan@nexedi.com> Date: Thu, 23 Sep 2010 12:12:56 +0000 Subject: [PATCH] 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 --- product/ERP5OOo/tests/testDms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product/ERP5OOo/tests/testDms.py b/product/ERP5OOo/tests/testDms.py index 9d39cac9d4..6438fa8679 100644 --- a/product/ERP5OOo/tests/testDms.py +++ b/product/ERP5OOo/tests/testDms.py @@ -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() -- 2.30.9