diff options
| author | Russ Cox <rsc@golang.org> | 2009-02-13 14:48:32 -0800 | 
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-02-13 14:48:32 -0800 | 
| commit | 526837026995aa88a05eb73f83f8573d5c024882 (patch) | |
| tree | a3b6c6ab9f68981976738f0efc7988353d5a0d82 /src/lib/net/dialgoogle_test.go | |
| parent | c2feca8a8dd68958c476a71b1e07b5cf43421a98 (diff) | |
| download | golang-526837026995aa88a05eb73f83f8573d5c024882.tar.gz | |
convert composite literals from { } to ( ).
only non-trivial changes are in
	convlit1.go
	golden.out
R=gri
OCL=25019
CL=25024
Diffstat (limited to 'src/lib/net/dialgoogle_test.go')
| -rw-r--r-- | src/lib/net/dialgoogle_test.go | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/lib/net/dialgoogle_test.go b/src/lib/net/dialgoogle_test.go index de7158a7b..0bf3eae9a 100644 --- a/src/lib/net/dialgoogle_test.go +++ b/src/lib/net/dialgoogle_test.go @@ -50,7 +50,7 @@ func doDialTCP(t *testing.T, network, addr string) {  	fd.Close()  } -var googleaddrs = []string { +var googleaddrs = []string (  	"74.125.19.99:80",  	"www.google.com:80",  	"74.125.19.99:http", @@ -62,7 +62,7 @@ var googleaddrs = []string {  	"[0:0:0:0:000000:ffff:74.125.19.99]:80",  	"[0:0:0:0:0:ffff::74.125.19.99]:80",  	"[2001:4860:0:2001::68]:80"	// ipv6.google.com; removed if ipv6 flag not set -} +)  func TestDialGoogle(t *testing.T) {  	// If no ipv6 tunnel, don't try the last address. | 
