From 75ddb29f156fb368978ba935db4ff4ea42eeb3b8 Mon Sep 17 00:00:00 2001 From: Felipe Coury Date: Sat, 30 May 2026 16:49:33 -0300 Subject: [PATCH] test(tui): normalize startup handoff snapshot paths --- codex-rs/tui/src/chatwidget/tests/status_and_layout.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/tui/src/chatwidget/tests/status_and_layout.rs b/codex-rs/tui/src/chatwidget/tests/status_and_layout.rs index 78896803a3..8241e798f2 100644 --- a/codex-rs/tui/src/chatwidget/tests/status_and_layout.rs +++ b/codex-rs/tui/src/chatwidget/tests/status_and_layout.rs @@ -1648,7 +1648,7 @@ async fn startup_header_handoff_visible_states_snapshot() { Ok(AppEvent::InsertHistoryCell(cell)) if cell.as_any().is::() => { - break lines_to_single_string(&cell.display_lines(width)); + break normalize_snapshot_paths(lines_to_single_string(&cell.display_lines(width))); } Ok(_) => continue, other => panic!("expected queued configured header, got {other:?}"),