From 671e92a55a9ed3b708764af8f07e8a66389f9a17 Mon Sep 17 00:00:00 2001 From: iamqizhao Date: Wed, 29 Jul 2015 11:40:08 -0700 Subject: [PATCH] fix typo --- transport/transport_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transport/transport_test.go b/transport/transport_test.go index 0a347319..7956073f 100644 --- a/transport/transport_test.go +++ b/transport/transport_test.go @@ -364,7 +364,7 @@ func TestMaxStreams(t *testing.T) { // Have a pending stream which takes all streams quota. s, err := ct.NewStream(context.Background(), callHdr) if err != nil { - t.Fatalf("failed to open stream: %v", err) + t.Fatalf("Failed to open stream: %v", err) } cc, ok := ct.(*http2Client) if !ok { @@ -418,7 +418,7 @@ func TestMaxStreams(t *testing.T) { t.Fatalf("streamsQuota.acquire() is not readable.") } if _, err := ct.NewStream(context.Background(), callHdr); err != nil { - t.Fatalf("failed to open stream: %v", err) + t.Fatalf("Failed to open stream: %v", err) } ct.Close() server.stop()