diff --git a/std/datetime/stopwatch.d b/std/datetime/stopwatch.d index 69ab82292..96e8e2be9 100644 --- a/std/datetime/stopwatch.d +++ b/std/datetime/stopwatch.d @@ -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); }