diff --git a/crates/terminal/src/connection/keymappings.rs b/crates/terminal/src/connection/keymappings.rs index 56e431e0b1..36921a5b3e 100644 --- a/crates/terminal/src/connection/keymappings.rs +++ b/crates/terminal/src/connection/keymappings.rs @@ -313,20 +313,6 @@ mod test { assert_eq!(to_esc_str(&pagedown, &any), Some("\x1b[6~".to_string())); } - #[test] - fn test_multi_char_fallthrough() { - let ks = Keystroke { - ctrl: false, - alt: false, - shift: false, - cmd: false, - - key: "🖖🏻".to_string(), //2 char string - }; - - assert_eq!(to_esc_str(&ks, &TermMode::NONE), Some("🖖🏻".to_string())); - } - #[test] fn test_application_mode() { let app_cursor = TermMode::APP_CURSOR;