diff options
| author | Paul Bütow <1224732+snonux@users.noreply.github.com> | 2025-06-20 22:48:42 +0300 |
|---|---|---|
| committer | Paul Bütow <1224732+snonux@users.noreply.github.com> | 2025-06-20 22:48:42 +0300 |
| commit | bc1fc549c25a301aa7df5baaa249daa4f59eac27 (patch) | |
| tree | 99d86d827b27365ab20a950573dd45313979c6f0 /internal | |
| parent | 229939859ced74fb9753ef9096723c5042024168 (diff) | |
Fix help hotkey tests
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/ui/table_test.go | 2 |
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") |
