@@ -625,7 +625,7 @@ async fn unified_exec_wait_after_final_agent_message_snapshot() {
625625 terminal_interaction ( & mut chat, "call-wait-stdin" , "proc-1" , "" ) ;
626626
627627 complete_assistant_message ( & mut chat, "msg-1" , "Final response." , /*phase*/ None ) ;
628- handle_turn_completed ( & mut chat, "turn-1" , None ) ;
628+ handle_turn_completed ( & mut chat, "turn-1" , /*duration_ms*/ None ) ;
629629
630630 let cells = drain_insert_history ( & mut rx) ;
631631 let combined = cells
@@ -649,7 +649,7 @@ async fn unified_exec_wait_before_streamed_agent_message_snapshot() {
649649 terminal_interaction ( & mut chat, "call-wait-stream-stdin" , "proc-1" , "" ) ;
650650
651651 handle_agent_message_delta ( & mut chat, "Streaming response." ) ;
652- handle_turn_completed ( & mut chat, "turn-wait-1" , None ) ;
652+ handle_turn_completed ( & mut chat, "turn-wait-1" , /*duration_ms*/ None ) ;
653653
654654 let cells = drain_insert_history ( & mut rx) ;
655655 let combined = cells
@@ -737,7 +737,7 @@ async fn unified_exec_waiting_multiple_empty_snapshots() {
737737 assert_eq ! ( status. header( ) , "Waiting for background terminal" ) ;
738738 assert_eq ! ( status. details( ) , Some ( "just fix" ) ) ;
739739
740- handle_turn_completed ( & mut chat, "turn-wait-3" , None ) ;
740+ handle_turn_completed ( & mut chat, "turn-wait-3" , /*duration_ms*/ None ) ;
741741
742742 let cells = drain_insert_history ( & mut rx) ;
743743 let combined = cells
@@ -809,7 +809,7 @@ async fn unified_exec_non_empty_then_empty_snapshots() {
809809 . collect :: < String > ( ) ;
810810 assert_chatwidget_snapshot ! ( "unified_exec_non_empty_then_empty_active" , active_combined) ;
811811
812- handle_turn_completed ( & mut chat, "turn-1" , None ) ;
812+ handle_turn_completed ( & mut chat, "turn-1" , /*duration_ms*/ None ) ;
813813
814814 let post_cells = drain_insert_history ( & mut rx) ;
815815 let mut combined = pre_cells
@@ -1009,7 +1009,7 @@ async fn user_message_during_user_shell_command_is_queued_not_steered() {
10091009 "done" ,
10101010 Some ( MessagePhase :: FinalAnswer ) ,
10111011 ) ;
1012- handle_turn_completed ( & mut chat, "turn-1" , None ) ;
1012+ handle_turn_completed ( & mut chat, "turn-1" , /*duration_ms*/ None ) ;
10131013
10141014 match next_submit_op ( & mut op_rx) {
10151015 Op :: UserTurn { items, .. } => assert_eq ! (
@@ -1296,7 +1296,7 @@ async fn turn_complete_keeps_unified_exec_processes() {
12961296 begin_unified_exec_startup ( & mut chat, "call-2" , "process-2" , "sleep 6" ) ;
12971297 assert_eq ! ( chat. unified_exec_processes. len( ) , 2 ) ;
12981298
1299- handle_turn_completed ( & mut chat, "turn-1" , None ) ;
1299+ handle_turn_completed ( & mut chat, "turn-1" , /*duration_ms*/ None ) ;
13001300
13011301 assert_eq ! ( chat. unified_exec_processes. len( ) , 2 ) ;
13021302
0 commit comments