From dbabe518b2637dbbea3dceaa4094ebfc7b327efc Mon Sep 17 00:00:00 2001 From: Dave Protasowski Date: Thu, 28 May 2026 17:26:12 -0400 Subject: [PATCH] fix compilation --- test/logstream/v2/stream_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/logstream/v2/stream_test.go b/test/logstream/v2/stream_test.go index 7de7522ee5..b6282ab5b0 100644 --- a/test/logstream/v2/stream_test.go +++ b/test/logstream/v2/stream_test.go @@ -215,7 +215,7 @@ func TestNamespaceStream(t *testing.T) { logFuncInvoked := make(chan string) t.Cleanup(func() { close(logFuncInvoked) }) logFunc := func(format string, args ...interface{}) { - logFuncInvoked <- fmt.Sprintf(format, args) + logFuncInvoked <- fmt.Sprintf(format, args...) } ctx, cancel := context.WithCancel(context.Background())