From 1a9c282f7675e519292bf7b85a7ab7e03ec661f6 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 13 Apr 2024 14:40:43 +0900 Subject: [PATCH] Fix unit tests --- src/options_test.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/options_test.go b/src/options_test.go index 99873337..8e3b20f4 100644 --- a/src/options_test.go +++ b/src/options_test.go @@ -170,8 +170,8 @@ func TestParseKeys(t *testing.T) { check(tui.CtrlM, "Return") checkEvent(tui.Key(' '), "space") check(tui.Tab, "tab") - check(tui.BTab, "btab") - check(tui.ESC, "esc") + check(tui.ShiftTab, "btab") + check(tui.Esc, "esc") check(tui.Up, "up") check(tui.Down, "down") check(tui.Left, "left") @@ -182,16 +182,16 @@ func TestParseKeys(t *testing.T) { t.Error(11) } check(tui.Tab, "Ctrl-I") - check(tui.PgUp, "page-up") - check(tui.PgDn, "Page-Down") + check(tui.PageUp, "page-up") + check(tui.PageDown, "Page-Down") check(tui.Home, "Home") check(tui.End, "End") - check(tui.AltBS, "Alt-BSpace") - check(tui.SLeft, "shift-left") - check(tui.SRight, "shift-right") - check(tui.BTab, "shift-tab") + check(tui.AltBackspace, "Alt-BSpace") + check(tui.ShiftLeft, "shift-left") + check(tui.ShiftRight, "shift-right") + check(tui.ShiftTab, "shift-tab") check(tui.CtrlM, "Enter") - check(tui.BSpace, "bspace") + check(tui.Backspace, "bspace") } func TestParseKeysWithComma(t *testing.T) {