]> Cypherpunks repositories - gostls13.git/commitdiff
net/http/httptrace: fix nit in test
authorMikio Hara <mikioh.mikioh@gmail.com>
Fri, 27 May 2016 08:35:45 +0000 (17:35 +0900)
committerMikio Hara <mikioh.mikioh@gmail.com>
Fri, 27 May 2016 18:47:40 +0000 (18:47 +0000)
Change-Id: I6dc3666398b4cd7a7195bb9c0e321fa8b733fa15
Reviewed-on: https://go-review.googlesource.com/23502
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>

src/net/http/httptrace/trace_test.go

index ed6ddbb40dbd173929fdd32a8e7aff117460a1c3..c7eaed83d478518ced0953b20e3702b52d2818d4 100644 (file)
@@ -16,7 +16,7 @@ func TestCompose(t *testing.T) {
        connectStart := func(b byte) func(network, addr string) {
                return func(network, addr string) {
                        if addr != "addr" {
-                               t.Errorf(`%d. args for %Q case = %q, %q; want addr of "addr"`, testNum, b, network, addr)
+                               t.Errorf(`%d. args for %q case = %q, %q; want addr of "addr"`, testNum, b, network, addr)
                        }
                        buf.WriteByte(b)
                }