summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2010-09-22 14:20:15 -0700
committerIan Lance Taylor <iant@golang.org>2010-09-22 14:20:15 -0700
commite7110c4c37fec45bde546e3a6b204eacb49b3fb7 (patch)
tree92e40ed50be43a859db93f70a3e3d7d042bf307e
parent06010919a087fa57e7d6a5cd762c989b2844208b (diff)
downloadgo-e7110c4c37fec45bde546e3a6b204eacb49b3fb7.tar.gz
http: Change redirect test URL, as the old one now fails.
R=rsc, r2 CC=golang-dev http://codereview.appspot.com/2267042
-rw-r--r--src/pkg/http/request_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/http/request_test.go b/src/pkg/http/request_test.go
index ea073e13b..cc9e78a6d 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 {