From 7313090c9b278061faf02ecebba3fb0ba3c8f0ad Mon Sep 17 00:00:00 2001 From: Dimitar Dimitrov Date: Fri, 20 Sep 2024 20:34:35 +0200 Subject: [PATCH] Make tests compile again Signed-off-by: Dimitar Dimitrov --- pkg/storage/ingest/pusher_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/storage/ingest/pusher_test.go b/pkg/storage/ingest/pusher_test.go index 3e17afcf86..26c5618fce 100644 --- a/pkg/storage/ingest/pusher_test.go +++ b/pkg/storage/ingest/pusher_test.go @@ -876,7 +876,7 @@ func TestBatchingQueue_NoDeadlock(t *testing.T) { // Add items to the queue for i := 0; i < batchSize*(capacity+1); i++ { - require.NoError(t, queue.AddToBatch(ctx, series)) + require.NoError(t, queue.AddToBatch(ctx, mimirpb.API, series)) } // Close the queue to signal no more items will be added