We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7dec46 commit 939554cCopy full SHA for 939554c
1 file changed
test/logstream/v2/stream_test.go
@@ -215,7 +215,7 @@ func TestNamespaceStream(t *testing.T) {
215
logFuncInvoked := make(chan string)
216
t.Cleanup(func() { close(logFuncInvoked) })
217
logFunc := func(format string, args ...interface{}) {
218
- logFuncInvoked <- fmt.Sprintf(format, args)
+ logFuncInvoked <- fmt.Sprintf(format, args...)
219
}
220
221
ctx, cancel := context.WithCancel(context.Background())
0 commit comments