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 a19e20d36e
commit 4ed9b1e244

View File

@@ -95,7 +95,7 @@ void StopWatchTestCase::Misc()
WX_ASSERT_MESSAGE WX_ASSERT_MESSAGE
( (
("Actual time value is %ld", t), ("Actual time value is %ld", t),
t > sleepTime - tolerance && t < sleepTime + tolerance t > sleepTime - tolerance && t < 2*sleepTime
); );
sw.Pause(); sw.Pause();