aboutsummaryrefslogtreecommitdiff
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
commit7b175236cbcea9bec55c655db501987b5b1869d0 (patch)
treef78e1e7be8d20f159bb1e900ad98900772665b2e
parenta6b6142f305195f235dc1e99d75571680b047f43 (diff)
downloadgo-7b175236cbcea9bec55c655db501987b5b1869d0.tar.gz
go-7b175236cbcea9bec55c655db501987b5b1869d0.zip
http: Change redirect test URL, as the old one now fails.
R=rsc, r2 CC=golang-dev https://golang.org/cl/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 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 {