Skip to content

Commit 939554c

Browse files
committed
fix compiliation issue
1 parent d7dec46 commit 939554c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/logstream/v2/stream_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ func TestNamespaceStream(t *testing.T) {
215215
logFuncInvoked := make(chan string)
216216
t.Cleanup(func() { close(logFuncInvoked) })
217217
logFunc := func(format string, args ...interface{}) {
218-
logFuncInvoked <- fmt.Sprintf(format, args)
218+
logFuncInvoked <- fmt.Sprintf(format, args...)
219219
}
220220

221221
ctx, cancel := context.WithCancel(context.Background())

0 commit comments

Comments
 (0)