Module: check_mk
Branch: master
Commit: 5ea49eb8682554049ee4862822e6af0d8e4d9785
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=5ea49eb8682554…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Mon Jul 23 12:38:08 2018 +0200
Try to reduce problems with flaky test_unreachable_notifications test
Change-Id: I25008d03698d0c94df9529b449c85263020ee43d
---
tests/integration/notifications/test_unreachable_notifications.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/integration/notifications/test_unreachable_notifications.py
b/tests/integration/notifications/test_unreachable_notifications.py
index 13f4ff8..a153ee9 100644
--- a/tests/integration/notifications/test_unreachable_notifications.py
+++ b/tests/integration/notifications/test_unreachable_notifications.py
@@ -135,13 +135,13 @@ class HistoryLog(object):
return fobj
- def check_logged(self, match_for, timeout=5):
+ def check_logged(self, match_for, timeout=10):
if not self._check_for_line(match_for, timeout):
raise Exception("Did not find %r in %s after %d seconds" %
(match_for, self._log_path(), timeout))
- def check_not_logged(self, match_for, timeout=5):
+ def check_not_logged(self, match_for, timeout=10):
if self._check_for_line(match_for, timeout):
raise Exception("Found %r in %s after %d seconds" %
(match_for, self._log_path(), timeout))