summaryrefslogtreecommitdiff
path: root/test/initcomma.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-12-20 13:38:29 -0800
committerRob Pike <r@golang.org>2008-12-20 13:38:29 -0800
commitc5c898c79a323c83be82058d7595a9c266e69c99 (patch)
tree466d53e54a53515b1d8611c7ffdd970b76203bb2 /test/initcomma.go
parent4e8d7172d13d1014eb5c40a8a141aea270269269 (diff)
downloadgo-c5c898c79a323c83be82058d7595a9c266e69c99.tar.gz
fix some tests. only 3 remain broken (complit, hilbert, initcomma).
leaving golden.out alone for now. R=ken DELTA=13 (0 added, 0 deleted, 13 changed) OCL=21682 CL=21682
Diffstat (limited to 'test/initcomma.go')
-rw-r--r--test/initcomma.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/initcomma.go b/test/initcomma.go
index d86ddbac4..da127d4b5 100644
--- a/test/initcomma.go
+++ b/test/initcomma.go
@@ -13,5 +13,5 @@ var c = []int { 1 }
func main() {
if len(a) != 2 { panicln("len a", len(a)) }
if len(b) != 5 { panicln("len b", len(b)) }
- if len(c) != 1 { panicln("len a", len(a)) }
+ if len(c) != 1 { panicln("len a", len(c)) }
}