summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorPaul Bütow <1224732+snonux@users.noreply.github.com>2025-06-20 22:48:42 +0300
committerPaul Bütow <1224732+snonux@users.noreply.github.com>2025-06-20 22:48:42 +0300
commitbc1fc549c25a301aa7df5baaa249daa4f59eac27 (patch)
tree99d86d827b27365ab20a950573dd45313979c6f0 /internal
parent229939859ced74fb9753ef9096723c5042024168 (diff)
Fix help hotkey tests
Diffstat (limited to 'internal')
-rw-r--r--internal/ui/table_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ui/table_test.go b/internal/ui/table_test.go
index d120337..d7ee19d 100644
--- a/internal/ui/table_test.go
+++ b/internal/ui/table_test.go
@@ -470,7 +470,7 @@ func TestEscClosesHelp(t *testing.T) {
t.Fatalf("New: %v", err)
}
- mv, _ := m.Update(tea.KeyMsg{Type: tea.KeyRunes, Runes: []rune{'?'}})
+ mv, _ := m.Update(tea.KeyMsg{Type: tea.KeyRunes, Runes: []rune{'h'}})
m = mv.(Model)
if !m.showHelp {
t.Fatalf("help not shown")