From 9c412a88069b5c01af31f01ae649b73c1bcc3bbd Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 21 Jul 2022 21:40:37 -0700 Subject: [PATCH] Remove test for handling input via key events Now, textual input is handled by a different code path than other key events. --- crates/terminal/src/connection/keymappings.rs | 14 -------------- 1 file changed, 14 deletions(-) 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;