Skip to content

Commit

Permalink
rpc_util: make test failure message with parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
hueypark committed Feb 23, 2024
1 parent 4282fd5 commit 389c89e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experimental/shared_buffer_pool_test.go
Expand Up @@ -185,7 +185,7 @@ func (s) TestRecvBufferPoolUnary(t *testing.T) {

const bufferCount = reqCount * 2 // req + resp
if len(pool.puts) != bufferCount {
t.Fatalf("Expected 10 buffers to be returned to the pool, got %d", len(pool.puts))
t.Fatalf("Expected %d buffers to be returned to the pool, got %d", bufferCount, len(pool.puts))
}
})
}
Expand Down

0 comments on commit 389c89e

Please sign in to comment.