Skip to content

Commit ef8c204

Browse files
committed
Fix incorrect test in time::tests::system_time_math.
1 parent abc11c3 commit ef8c204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/time/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ mod tests {
498498
let dur = dur.duration();
499499
assert!(a > b);
500500
assert_almost_eq!(b + dur, a);
501-
assert_almost_eq!(b - dur, a);
501+
assert_almost_eq!(a - dur, b);
502502
}
503503
}
504504

0 commit comments

Comments
 (0)