From 601b03b21debf568a79dbe0bf30d0bf7ebc6901d Mon Sep 17 00:00:00 2001 From: Jan Svabenik Date: Sun, 5 Apr 2026 17:12:21 +0200 Subject: [PATCH] test: fix queue health test type mismatch --- internal/output/frame_queue_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/output/frame_queue_test.go b/internal/output/frame_queue_test.go index 86c0e8e..cb467ec 100644 --- a/internal/output/frame_queue_test.go +++ b/internal/output/frame_queue_test.go @@ -90,7 +90,7 @@ func TestFrameQueueHealthIndicator(t *testing.T) { t.Fatalf("expected initial health critical, got %s", stats.Health) } - push := func(seq int) { + push := func(seq uint64) { frame := &CompositeFrame{Sequence: seq} if err := q.Push(ctx, frame); err != nil { t.Fatalf("push %d failed: %v", seq, err)