From 043bbbb884560a0f91f5e12d0b7851ad60121d5a Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 5 Mar 2026 22:18:08 +0200 Subject: task 350: add TabFlame tab infrastructure --- internal/tui/dashboard/model_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/tui/dashboard/model_test.go') 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'})}) -- cgit v1.2.3