fix(flow): remove redundant schedule assertion

Signed-off-by: discord9 <55937128+discord9@users.noreply.github.com>
This commit is contained in:
discord9
2026-08-25 13:46:12 +08:00
parent 31c4fef49c
commit e50d2389c8
@@ -546,7 +546,6 @@ mod test {
assert_eq!(due.scheduled_times_secs.len(), 3);
for t in &due.scheduled_times_secs {
assert_eq!(t % 60, 0);
assert!(*t <= i64::MAX);
}
// skipped = total_count - keep_count with total_count =
// (i64::MAX / 60) + 1 and keep_count = max_runs = 3.