aboutsummaryrefslogtreecommitdiff
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
commit61a7e44002949a5e335dc7cfc7c9167074c3487a (patch)
tree466d53e54a53515b1d8611c7ffdd970b76203bb2 /test/initcomma.go
parentc3077f7606b8f45d010d5d87c7fa748ef5b88368 (diff)
downloadgo-61a7e44002949a5e335dc7cfc7c9167074c3487a.tar.gz
go-61a7e44002949a5e335dc7cfc7c9167074c3487a.zip
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 d86ddbac43..da127d4b5f 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)) }
}