fix(test): remove ctrl-d test from command tests

This commit is contained in:
Orhun Parmaksız 2022-02-07 20:32:17 +03:00
parent fee2070a91
commit df0a3f742f
No known key found for this signature in database
GPG key ID: F83424824B3E4B90

View file

@ -181,7 +181,7 @@ mod tests {
Key::Char('c') => Command::Copy,
Key::Char('r') => Command::Refresh,
Key::Esc => Command::Cancel,
Key::Ctrl('c') | Key::Ctrl('d') => Command::Exit,
Key::Ctrl('c') => Command::Exit,
}
assert_eq!(Command::Nothing, Command::parse(Key::PageDown, true));
assert_eq!(Command::Nothing, Command::parse(Key::Char('#'), false));