diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2010-12-08 00:14:10 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2010-12-08 00:14:10 +0000 |
commit | 73d520afa5a94504606d810e4a4c504cff4aecf9 (patch) | |
tree | 394f9286eec4ae09ede6d3d1692c8b89a237fe86 | |
parent | 6997f6964e07daab9d2cb8a3a85a0cfe141ab350 (diff) | |
download | gcc-73d520afa5a94504606d810e4a4c504cff4aecf9.zip gcc-73d520afa5a94504606d810e4a4c504cff4aecf9.tar.gz gcc-73d520afa5a94504606d810e4a4c504cff4aecf9.tar.bz2 |
Fix test by copying from master.
From-SVN: r167575
-rw-r--r-- | libgo/go/net/dialgoogle_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/net/dialgoogle_test.go b/libgo/go/net/dialgoogle_test.go index 0364181..47a478a 100644 --- a/libgo/go/net/dialgoogle_test.go +++ b/libgo/go/net/dialgoogle_test.go @@ -17,7 +17,7 @@ var ipv6 = flag.Bool("ipv6", false, "assume ipv6 tunnel is present") // fd is already connected to the destination, port 80. // Run an HTTP request to fetch the appropriate page. func fetchGoogle(t *testing.T, fd Conn, network, addr string) { - req := []byte("GET /intl/en/privacy.html HTTP/1.0\r\nHost: www.google.com\r\n\r\n") + req := []byte("GET /intl/en/privacy/ HTTP/1.0\r\nHost: www.google.com\r\n\r\n") n, err := fd.Write(req) buf := make([]byte, 1000) |