std.datetime.stopwatch: Fix random test failure on Win32

This commit is contained in:
Vladimir Panteleev 2017-05-15 04:26:12 +00:00
parent 79edc62e8f
commit 6dbcf46413

View file

@ -231,7 +231,7 @@ public:
sw.stop();
assert(!sw.running);
immutable t2 = sw.peek();
assert(t2 > t1);
assert(t2 >= t1);
immutable t3 = sw.peek();
assert(t2 == t3);
}