1
0
mirror of https://github.com/golang/go synced 2024-11-12 07:40:23 -07:00

net/http/httputil: fix build

TBR=bradfitz
CC=golang-dev
https://golang.org/cl/7540043
This commit is contained in:
Russ Cox 2013-03-06 16:56:53 -05:00
parent efd3d1ffe9
commit 56d1faa8b6

View File

@ -68,7 +68,7 @@ var dumpTests = []dumpTest{
WantDumpOut: "GET /foo HTTP/1.1\r\n" +
"Host: example.com\r\n" +
"User-Agent: Go http package\r\n" +
"User-Agent: Go 1.1 package http\r\n" +
"Accept-Encoding: gzip\r\n\r\n",
},
@ -80,7 +80,7 @@ var dumpTests = []dumpTest{
WantDumpOut: "GET /foo HTTP/1.1\r\n" +
"Host: example.com\r\n" +
"User-Agent: Go http package\r\n" +
"User-Agent: Go 1.1 package http\r\n" +
"Accept-Encoding: gzip\r\n\r\n",
},
}