mirror of
https://github.com/dlang/phobos.git
synced 2025-05-02 16:10:45 +03:00
std.datetime.stopwatch: Fix random test failure on Win32
This commit is contained in:
parent
79edc62e8f
commit
6dbcf46413
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ public:
|
||||||
sw.stop();
|
sw.stop();
|
||||||
assert(!sw.running);
|
assert(!sw.running);
|
||||||
immutable t2 = sw.peek();
|
immutable t2 = sw.peek();
|
||||||
assert(t2 > t1);
|
assert(t2 >= t1);
|
||||||
immutable t3 = sw.peek();
|
immutable t3 = sw.peek();
|
||||||
assert(t2 == t3);
|
assert(t2 == t3);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue