summaryrefslogtreecommitdiff
path: root/internal/tui/dashboard/files_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-24 17:16:17 +0200
committerPaul Buetow <paul@buetow.org>2026-02-24 17:16:17 +0200
commit2ae0b33c9f196634eaa55bd6997d1feae9147385 (patch)
treeea4e0e705c693e44f29924014431186af635b7e5 /internal/tui/dashboard/files_test.go
parent92114c3b6bfe8a3d28487fcfb34fd291c573500c (diff)
tui: improve dashboard tab navigation and live updates
Diffstat (limited to 'internal/tui/dashboard/files_test.go')
-rw-r--r--internal/tui/dashboard/files_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/tui/dashboard/files_test.go b/internal/tui/dashboard/files_test.go
index f889b66..b0a5dbf 100644
--- a/internal/tui/dashboard/files_test.go
+++ b/internal/tui/dashboard/files_test.go
@@ -22,7 +22,7 @@ func TestRenderFilesIncludesHeaders(t *testing.T) {
)
out := renderFiles(&snap, 120, 30)
- for _, token := range []string{"Path", "Accesses", "Bytes Read", "Bytes Written", "Avg Latency", "Max Latency", "app.log"} {
+ for _, token := range []string{"Path", "Accesses", "Read", "Write", "Avg Latency", "Max Latency", "app.log"} {
if !strings.Contains(out, token) {
t.Fatalf("expected token %q in files table output", token)
}