Skip to content

Commit 5c6aa04

Browse files
committed
Reduce test log spam.
1 parent a08254e commit 5c6aa04

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

server/local_test.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,7 @@ func TestLocal(t *testing.T) {
5656
func TestLocalConcurrent(t *testing.T) {
5757
once.Do(setup)
5858
loc := server.NewLocal(handler.Map{
59-
"Test": handler.New(func(_ context.Context, req *jrpc2.Request) error {
60-
t.Logf("Call id=%q", req.ID())
61-
return nil
62-
}),
59+
"Test": handler.New(func(context.Context) error { return nil }),
6360
}, testOpts)
6461

6562
const numCallers = 20

0 commit comments

Comments
 (0)