Relax another check in wxStopWatch unit test.

Increase the upper bound even further to avoid spurious failures in the
buildbot builds.
This commit is contained in:
Vadim Zeitlin 2015-04-13 15:55:33 +02:00
parent f995dfcc20
commit 594dc3396a

View File

@ -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();