From 007827fac6b7ce3146da5ce11c6d81dd332514d6 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Mon, 25 Mar 2013 11:03:55 -0400 Subject: [PATCH] ENH: increase timeout to 20 sec from 10 sec in assert_correct_last_attempt This is done with a hope to resolve randomly failing tests on travis-ci and thus fixing the #103 --- testcases/filtertestcase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcases/filtertestcase.py b/testcases/filtertestcase.py index a036f804..5833e296 100644 --- a/testcases/filtertestcase.py +++ b/testcases/filtertestcase.py @@ -379,7 +379,7 @@ def get_monitor_failures_testcase(Filter_): return not self.isFilled(delay) def assert_correct_last_attempt(self, failures, count=None): - self.assertTrue(self.isFilled(10)) # give Filter a chance to react + self.assertTrue(self.isFilled(20)) # give Filter a chance to react _assert_correct_last_attempt(self, self.jail, failures, count=count)