field clean up

This commit is contained in:
Roy Han
2026-03-31 21:43:05 -07:00
parent 3a67cff456
commit a60d558ebf
5 changed files with 10 additions and 0 deletions

View File

@@ -9078,6 +9078,7 @@ guardian_approval = true
ServerNotification::TurnStarted(TurnStartedNotification {
thread_id: thread_id.to_string(),
turn: test_turn(turn_id, TurnStatus::InProgress, Vec::new()),
created_at: 0,
})
}

View File

@@ -677,6 +677,8 @@ mod tests {
status: TurnStatus::Completed,
error: None,
},
completed_at: 0,
duration_ms: None,
})
}

View File

@@ -94,6 +94,7 @@ async fn live_app_server_turn_completed_clears_working_status_after_answer_item(
status: AppServerTurnStatus::InProgress,
error: None,
},
created_at: 0,
}),
/*replay_kind*/ None,
);
@@ -418,6 +419,7 @@ async fn live_app_server_failed_turn_does_not_duplicate_error_history() {
status: AppServerTurnStatus::InProgress,
error: None,
},
created_at: 0,
}),
/*replay_kind*/ None,
);
@@ -476,6 +478,7 @@ async fn live_app_server_stream_recovery_restores_previous_status_header() {
status: AppServerTurnStatus::InProgress,
error: None,
},
created_at: 0,
}),
/*replay_kind*/ None,
);
@@ -530,6 +533,7 @@ async fn live_app_server_server_overloaded_error_renders_warning() {
status: AppServerTurnStatus::InProgress,
error: None,
},
created_at: 0,
}),
/*replay_kind*/ None,
);

View File

@@ -537,6 +537,7 @@ async fn replayed_retryable_app_server_error_keeps_turn_running() {
status: AppServerTurnStatus::InProgress,
error: None,
},
created_at: 0,
}),
Some(ReplayKind::ThreadSnapshot),
);
@@ -687,6 +688,7 @@ async fn live_reasoning_summary_is_not_rendered_twice_when_item_completes() {
status: AppServerTurnStatus::InProgress,
error: None,
},
created_at: 0,
}),
/*replay_kind*/ None,
);

View File

@@ -851,6 +851,7 @@ async fn submit_user_message_queues_while_compaction_turn_is_running() {
status: AppServerTurnStatus::InProgress,
error: None,
},
created_at: 0,
}),
/*replay_kind*/ None,
);