Skip to content

Commit

Permalink
Remove duplicate test
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Mar 7, 2024
1 parent e79fe21 commit bcb5386
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/datetime/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1866,12 +1866,3 @@ fn nano_roundrip() {
assert_eq!(nanos, nanos2);
}
}

#[test]
fn test_datetime_utc_is_copy_and_send() {
fn is_copy<T: Copy>(_: T) {}
fn is_send<T: Send>(_: T) {}

is_copy(DateTime::<Utc>::MIN_UTC);
is_send(DateTime::<Utc>::MIN_UTC);
}

0 comments on commit bcb5386

Please sign in to comment.