| Index: grpc/prpc/client_test.go
|
| diff --git a/grpc/prpc/client_test.go b/grpc/prpc/client_test.go
|
| index 914f73db65b95136c5b9871efd6b688420e5cbec..cb3972935c68e7aed94a04275539f858ce247478 100644
|
| --- a/grpc/prpc/client_test.go
|
| +++ b/grpc/prpc/client_test.go
|
| @@ -211,7 +211,7 @@ func TestClient(t *testing.T) {
|
| }
|
|
|
| err := client.Call(ctx, "prpc.Greeter", "SayHello", req, res)
|
| - So(err.Error(), ShouldContainSubstring, "failed to send request")
|
| + So(err.Error(), ShouldEqual, context.DeadlineExceeded.Error())
|
| So(retries, ShouldEqual, 0)
|
| })
|
|
|
|
|