We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6340acd commit c991c6eCopy full SHA for c991c6e
codex-rs/tui/src/chatwidget/tests.rs
@@ -671,7 +671,10 @@ fn plan_update_renders_history_cell() {
671
let cells = drain_insert_history(&rx);
672
assert!(!cells.is_empty(), "expected plan update cell to be sent");
673
let blob = lines_to_single_string(cells.last().unwrap());
674
- assert!(blob.contains("Updated"), "missing plan header: {blob:?}");
+ assert!(
675
+ blob.contains("Update plan"),
676
+ "missing plan header: {blob:?}"
677
+ );
678
assert!(blob.contains("Explore codebase"));
679
assert!(blob.contains("Implement feature"));
680
assert!(blob.contains("Write tests"));
0 commit comments