We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bc396a commit 068631fCopy full SHA for 068631f
1 file changed
ghostscope-ui/tests/additional_ui_coverage_test.rs
@@ -101,7 +101,8 @@ mod history_search_tests {
101
let actions = InputHandler::handle_key_event(&mut state, esc_key);
102
103
assert!(!state.is_in_history_search());
104
- assert!(actions
+ // Should NOT add empty response - would overwrite previous command's response
105
+ assert!(!actions
106
.iter()
107
.any(|a| matches!(a, Action::AddResponse { .. })));
108
}
0 commit comments