Revert tests of leap-second handling: we now just clamp them to 0..=58
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
parent
910f9925c3
commit
d5ff6d1e26
1 changed files with 2 additions and 2 deletions
|
@ -1181,10 +1181,10 @@ mod test {
|
|||
fn datetime_bounds() {
|
||||
use super::DateTime;
|
||||
|
||||
assert!(DateTime::from_date_and_time(2000, 1, 1, 23, 59, 58).is_ok());
|
||||
assert!(DateTime::from_date_and_time(2000, 1, 1, 23, 59, 60).is_ok());
|
||||
assert!(DateTime::from_date_and_time(2000, 1, 1, 24, 0, 0).is_err());
|
||||
assert!(DateTime::from_date_and_time(2000, 1, 1, 0, 60, 0).is_err());
|
||||
assert!(DateTime::from_date_and_time(2000, 1, 1, 0, 0, 59).is_err());
|
||||
assert!(DateTime::from_date_and_time(2000, 1, 1, 0, 0, 61).is_err());
|
||||
|
||||
assert!(DateTime::from_date_and_time(2107, 12, 31, 0, 0, 0).is_ok());
|
||||
assert!(DateTime::from_date_and_time(1980, 1, 1, 0, 0, 0).is_ok());
|
||||
|
|
Loading…
Add table
Reference in a new issue