From 7b175236cbcea9bec55c655db501987b5b1869d0 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 22 Sep 2010 14:20:15 -0700 Subject: [PATCH] http: Change redirect test URL, as the old one now fails. R=rsc, r2 CC=golang-dev https://golang.org/cl/2267042 --- src/pkg/http/request_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pkg/http/request_test.go b/src/pkg/http/request_test.go index ea073e13ba0..cc9e78a6dc0 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 {