Skip to content

Commit 0ce5403

Browse files
authored
test(transport/grpc): fix arg for test failure logs (#1733)
This pull request fixes arg for test failure logs in `transport/grpc/pool_test.go`
1 parent 06360d8 commit 0ce5403

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

transport/grpc/pool_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ func TestPool(t *testing.T) {
2424
}
2525

2626
if got := pool.Conn(); got != conn2 {
27-
t.Errorf("pool.Conn() #1 got %v; want conn2 (%v)", got, conn1)
27+
t.Errorf("pool.Conn() #1 got %v; want conn2 (%v)", got, conn2)
2828
}
2929

3030
if got := pool.Conn(); got != conn1 {
3131
t.Errorf("pool.Conn() #2 got %v; want conn1 (%v)", got, conn1)
3232
}
3333

3434
if got := pool.Conn(); got != conn2 {
35-
t.Errorf("pool.Conn() #3 got %v; want conn2 (%v)", got, conn1)
35+
t.Errorf("pool.Conn() #3 got %v; want conn2 (%v)", got, conn2)
3636
}
3737
}
3838

0 commit comments

Comments
 (0)