From: Ian Lance Taylor Date: Wed, 22 Sep 2010 21:20:15 +0000 (-0700) Subject: http: Change redirect test URL, as the old one now fails. X-Git-Tag: weekly.2010-09-22~5 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7b175236cbcea9bec55c655db501987b5b1869d0;p=gostls13.git http: Change redirect test URL, as the old one now fails. R=rsc, r2 CC=golang-dev https://golang.org/cl/2267042 --- diff --git a/src/pkg/http/request_test.go b/src/pkg/http/request_test.go index ea073e13ba..cc9e78a6dc 100644 --- a/src/pkg/http/request_test.go +++ b/src/pkg/http/request_test.go @@ -139,8 +139,8 @@ func TestMultipartReader(t *testing.T) { func TestRedirect(t *testing.T) { const ( - start = "http://codesearch.google.com/" - end = "http://www.google.com/codesearch" + start = "http://google.com/" + end = "http://www.google.com/" ) r, url, err := Get(start) if err != nil {