Increase the tolerance for the second timer test, too.

This commit is contained in:
Sönke Ludwig 2017-12-02 13:47:36 +01:00
parent 929164e114
commit 979640b074

View file

@ -43,7 +43,7 @@ void main()
auto dur = Clock.currTime(UTC()) - s_startTime;
s_cnt++;
assert(dur > 100.msecs * s_cnt);
assert(dur < 100.msecs * s_cnt + 20.msecs);
assert(dur < 100.msecs * s_cnt + 60.msecs);
assert(s_cnt <= 3);
if (s_cnt == 3) {