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())