diff options
author | Russ Cox <rsc@golang.org> | 2008-12-18 22:37:22 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2008-12-18 22:37:22 -0800 |
commit | 89995dcecf37b9a21c26783dcf8ab506da237363 (patch) | |
tree | 851fad01a87b8fa071ed46fa0985f1857d9e47ca /src/lib/testing.go | |
parent | 924e27f38d133bc7c9978a061b20f950554434ee (diff) | |
download | golang-89995dcecf37b9a21c26783dcf8ab506da237363.tar.gz |
convert *[] to [].
R=r
OCL=21563
CL=21571
Diffstat (limited to 'src/lib/testing.go')
-rw-r--r-- | src/lib/testing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/testing.go b/src/lib/testing.go index afb24855b..c5a9761e7 100644 --- a/src/lib/testing.go +++ b/src/lib/testing.go @@ -82,7 +82,7 @@ func TRunner(t *T, test *Test) { t.ch <- t; } -export func Main(tests *[]Test) { +export func Main(tests []Test) { flag.Parse(); ok := true; if len(tests) == 0 { |