Skip to content

Commit d246b71

Browse files
author
Symbiont OSS Sync
committed
Sync OSS release
1 parent ddbb61b commit d246b71

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/runtime/src/scheduler/cron_scheduler.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -787,8 +787,7 @@ mod tests {
787787
#[test]
788788
fn compute_next_run_with_different_timezones() {
789789
let utc_next = compute_next_run_static("0 0 12 * * *", "UTC", None);
790-
let eastern_next =
791-
compute_next_run_static("0 0 12 * * *", "America/New_York", None);
790+
let eastern_next = compute_next_run_static("0 0 12 * * *", "America/New_York", None);
792791
assert!(utc_next.is_some());
793792
assert!(eastern_next.is_some());
794793
// Same cron expression in different timezones should produce different UTC times

0 commit comments

Comments
 (0)