From 594dc3396a10ef1ecd956969a434fb4e03280aa1 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 13 Apr 2015 15:55:33 +0200 Subject: [PATCH] Relax another check in wxStopWatch unit test. Increase the upper bound even further to avoid spurious failures in the buildbot builds. --- tests/events/stopwatch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/events/stopwatch.cpp b/tests/events/stopwatch.cpp index 298a31c504..6b6a47612b 100644 --- a/tests/events/stopwatch.cpp +++ b/tests/events/stopwatch.cpp @@ -103,7 +103,7 @@ void StopWatchTestCase::Misc() WX_ASSERT_MESSAGE ( ("Actual time value is %ld", t), - t > sleepTime - tolerance && t < sleepTime + tolerance + t > sleepTime - tolerance && t < 2*sleepTime ); sw.Pause();