Hello bradfitz (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://code.google.com/p/go/
*** Submitted as https://code.google.com/p/go/source/detail?r=bc4ace1381c9 *** net/http/httputil: fix build TBR=bradfitz CC=golang-dev https://codereview.appspot.com/7540043
LGTM On Wed, Mar 6, 2013 at 1:56 PM, <rsc@golang.org> wrote: > Reviewers: bradfitz, > > Message: > Hello bradfitz (cc: golang-dev@googlegroups.com), > > I'd like you to review this change to > https://code.google.com/p/go/ > > > Description: > net/http/httputil: fix build > > Please review this at https://codereview.appspot.**com/7540043/<https://codereview.appspot.com/7540... > > Affected files: > M src/pkg/net/http/httputil/**dump_test.go > > > Index: src/pkg/net/http/httputil/**dump_test.go > ==============================**==============================**======= > --- a/src/pkg/net/http/httputil/**dump_test.go > +++ b/src/pkg/net/http/httputil/**dump_test.go > @@ -68,7 +68,7 @@ > > 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 @@ > > 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", > }, > } > > >