diff options
Diffstat (limited to 'plugin/proxy/grpc_test.go')
-rw-r--r-- | plugin/proxy/grpc_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugin/proxy/grpc_test.go b/plugin/proxy/grpc_test.go index 976ac3299..8f4958295 100644 --- a/plugin/proxy/grpc_test.go +++ b/plugin/proxy/grpc_test.go @@ -42,7 +42,7 @@ func buildPool(size int) ([]*healthcheck.UpstreamHost, func(), error) { for _, e := range errs { valErr += fmt.Sprintf("%v\n", e) } - return nil, nil, fmt.Errorf("error at allocation of the pool : %v", valErr) + return nil, nil, fmt.Errorf("Error at allocation of the pool : %v", valErr) } return ups, stopIt, nil } @@ -51,7 +51,7 @@ func TestGRPCStartupShutdown(t *testing.T) { pool, closePool, err := buildPool(2) if err != nil { - t.Fatalf("error creating the pool of upstream for the test : %s", err) + t.Fatalf("Error creating the pool of upstream for the test : %s", err) } defer closePool() @@ -91,7 +91,7 @@ func TestGRPCRunAQuery(t *testing.T) { pool, closePool, err := buildPool(2) if err != nil { - t.Fatalf("error creating the pool of upstream for the test : %s", err) + t.Fatalf("Error creating the pool of upstream for the test : %s", err) } defer closePool() @@ -131,7 +131,7 @@ func TestGRPCRunAQueryOnSecureLinkWithInvalidCert(t *testing.T) { pool, closePool, err := buildPool(1) if err != nil { - t.Fatalf("error creating the pool of upstream for the test : %s", err) + t.Fatalf("Error creating the pool of upstream for the test : %s", err) } defer closePool() |