fix clippy warnings

This commit is contained in:
yggverse 2024-12-07 23:08:41 +02:00
parent 8c5e806bdc
commit 9f7b85b523
2 changed files with 22 additions and 18 deletions

View file

@ -94,7 +94,7 @@ match Link::from(
match link.timestamp {
Some(timestamp) => {
assert_eq!(timestamp.year(), 1965);
assert_eq!(timestamp.month(), 01);
assert_eq!(timestamp.month(), 1);
assert_eq!(timestamp.day_of_month(), 19);
}
None => assert!(false),