Skip to content

Commit

Permalink
Merge pull request #5394 from CyberShadow/pull-20170515-042609
Browse files Browse the repository at this point in the history
std.datetime.stopwatch: Fix random test failure on Win32
merged-on-behalf-of: Jonathan M Davis <jmdavis@users.noreply.github.com>
  • Loading branch information
dlang-bot committed May 15, 2017
2 parents 79edc62 + 6dbcf46 commit c33c670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/datetime/stopwatch.d
Expand Up @@ -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);
}
Expand Down

0 comments on commit c33c670

Please sign in to comment.