mirror of
https://github.com/chronotope/chrono.git
synced 2025-10-02 15:26:12 +00:00
Fix MSRV violation
This commit is contained in:
parent
2f14b0c870
commit
918003e7ee
@ -33,7 +33,7 @@ fn test_datetime_from_timestamp_millis() {
|
|||||||
// Test that the result of `from_timestamp_millis` compares equal to
|
// Test that the result of `from_timestamp_millis` compares equal to
|
||||||
// that of `from_timestamp_opt`.
|
// that of `from_timestamp_opt`.
|
||||||
let secs_test = [0, 1, 2, 1000, 1234, 12345678, -1, -2, -1000, -12345678];
|
let secs_test = [0, 1, 2, 1000, 1234, 12345678, -1, -2, -1000, -12345678];
|
||||||
for secs in secs_test {
|
for secs in secs_test.iter().cloned() {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
NaiveDateTime::from_timestamp_millis(secs * 1000),
|
NaiveDateTime::from_timestamp_millis(secs * 1000),
|
||||||
NaiveDateTime::from_timestamp_opt(secs, 0)
|
NaiveDateTime::from_timestamp_opt(secs, 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user