summaryrefslogtreecommitdiff
path: root/internal/tui/dashboard/model_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-05 22:18:08 +0200
committerPaul Buetow <paul@buetow.org>2026-03-05 22:18:08 +0200
commit043bbbb884560a0f91f5e12d0b7851ad60121d5a (patch)
treeb3345068b594945c777991a03876e2826175c089 /internal/tui/dashboard/model_test.go
parent98e46348ca59de2033451b844a4f592f1f9e5433 (diff)
task 350: add TabFlame tab infrastructure
Diffstat (limited to 'internal/tui/dashboard/model_test.go')
-rw-r--r--internal/tui/dashboard/model_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/tui/dashboard/model_test.go b/internal/tui/dashboard/model_test.go
index 642c702..c9a1cb9 100644
--- a/internal/tui/dashboard/model_test.go
+++ b/internal/tui/dashboard/model_test.go
@@ -48,8 +48,8 @@ func TestKeySwitchingChangesActiveTab(t *testing.T) {
next, _ = model.Update(tea.KeyPressMsg{Code: []rune{'7'}[0], Text: string([]rune{'7'})})
model = next.(Model)
- if model.activeTab != TabStream {
- t.Fatalf("expected stream tab on key 7, got %v", model.activeTab)
+ if model.activeTab != TabFlame {
+ t.Fatalf("expected flame tab on key 7, got %v", model.activeTab)
}
next, _ = model.Update(tea.KeyPressMsg{Code: []rune{'6'}[0], Text: string([]rune{'6'})})