diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-24 17:16:17 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-24 17:16:17 +0200 |
| commit | 2ae0b33c9f196634eaa55bd6997d1feae9147385 (patch) | |
| tree | ea4e0e705c693e44f29924014431186af635b7e5 /internal/tui/dashboard/syscalls_test.go | |
| parent | 92114c3b6bfe8a3d28487fcfb34fd291c573500c (diff) | |
tui: improve dashboard tab navigation and live updates
Diffstat (limited to 'internal/tui/dashboard/syscalls_test.go')
| -rw-r--r-- | internal/tui/dashboard/syscalls_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/tui/dashboard/syscalls_test.go b/internal/tui/dashboard/syscalls_test.go index f998f74..dfb6384 100644 --- a/internal/tui/dashboard/syscalls_test.go +++ b/internal/tui/dashboard/syscalls_test.go @@ -20,7 +20,7 @@ func TestRenderSyscallsIncludesHeaders(t *testing.T) { ) out := renderSyscalls(&snap, 120, 30) - for _, token := range []string{"Syscall", "Count", "Rate/s", "p95", "Errors"} { + for _, token := range []string{"Syscall", "Count", "Rate/s", "p95", "p99", "Bytes", "Errors"} { if !strings.Contains(out, token) { t.Fatalf("expected token %q in syscall table view", token) } |
