diff --git a/server/src/io/watcher.rs b/server/src/io/watcher.rs index 4ab9ea5..26a1506 100644 --- a/server/src/io/watcher.rs +++ b/server/src/io/watcher.rs @@ -938,12 +938,12 @@ mod tests { fn should_commit_stage_only_for_terminal_stages() { // Terminal stages — should commit. assert!(should_commit_stage("1_upcoming")); + assert!(should_commit_stage("5_done")); assert!(should_commit_stage("6_archived")); // Intermediate stages — broadcast-only, no commit. assert!(!should_commit_stage("2_current")); assert!(!should_commit_stage("3_qa")); assert!(!should_commit_stage("4_merge")); - assert!(!should_commit_stage("5_done")); // Unknown — no commit. assert!(!should_commit_stage("unknown")); }