From 3d051227b23430020eae7e3143609be0ce62d425 Mon Sep 17 00:00:00 2001 From: iamqizhao Date: Wed, 29 Jul 2015 11:41:19 -0700 Subject: [PATCH] gofmt -w --- transport/transport_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/transport_test.go b/transport/transport_test.go index 7956073f..e79acec4 100644 --- a/transport/transport_test.go +++ b/transport/transport_test.go @@ -409,7 +409,7 @@ func TestMaxStreams(t *testing.T) { // Close the pending stream so that the streams quota becomes available for the next new stream. ct.CloseStream(s, nil) select { - case i:=<-cc.streamsQuota.acquire(): + case i := <-cc.streamsQuota.acquire(): if i != 1 { t.Fatalf("streamsQuota.acquire() got %d quota, want 1.", i) }