From d4e07c7713624d0ca88b2e89255a14ce9e5185d3 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Mon, 24 Nov 2014 19:09:11 +0100 Subject: [PATCH] Unix: Longer timeout so tests stop failing that often. --- plugins/Unix/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Unix/test.py b/plugins/Unix/test.py index b1329697f..cddf2c9c5 100644 --- a/plugins/Unix/test.py +++ b/plugins/Unix/test.py @@ -97,7 +97,8 @@ if os.name == 'posix': def testPing6Count(self): self.assertNotError('unix ping6 --c 1 ::1') self.assertError('unix ping6 --c a ::1') - self.assertRegexp('unix ping6 --c 11 ::1','10 packets') + self.assertRegexp('unix ping6 --c 11 ::1','10 packets', + timeout=12) self.assertRegexp('unix ping6 ::1','5 packets') def testPing6Interval(self): self.assertNotError('unix ping6 --i 1 --c 1 ::1')