Skip to content

Commit fc14854

Browse files
committed
clippy: fix warnings from zero_prefixed_literal
1 parent be45c27 commit fc14854

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ mod tests {
476476
#[test]
477477
fn test_time_only() {
478478
env::set_var("TZ", "UTC");
479-
let test_date = Local.with_ymd_and_hms(2024, 03, 03, 0, 0, 0).unwrap();
479+
let test_date = Local.with_ymd_and_hms(2024, 3, 3, 0, 0, 0).unwrap();
480480
let parsed_time = parse_datetime_at_date(test_date, "9:04:30 PM +0530")
481481
.unwrap()
482482
.timestamp();

0 commit comments

Comments
 (0)