style(sched): 💄 format

This commit is contained in:
Lucas Colombo 2024-04-07 23:39:41 -03:00
parent da3dd37eed
commit 14d80d71de
Signed by: lucas
GPG Key ID: EF34786CFEFFAE35
2 changed files with 1 additions and 9 deletions

View File

@ -3,7 +3,6 @@ use chrono::Weekday;
use {super::RecurrenceRuleSet, crate::sched::rules::Rule};
pub fn ruleset() -> RecurrenceRuleSet {
RecurrenceRuleSet::recurring()
}

View File

@ -51,14 +51,7 @@ fn at_hour_1_of_each_day() {
assert_eq!(
next,
Local
.with_ymd_and_hms(
2024,
initial_month,
(initial_day + i + 1) as u32,
1,
0,
0
)
.with_ymd_and_hms(2024, initial_month, (initial_day + i + 1) as u32, 1, 0, 0)
.unwrap()
);
}