summaryrefslogtreecommitdiff
path: root/src/lib/testing.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-12-18 22:37:22 -0800
committerRuss Cox <rsc@golang.org>2008-12-18 22:37:22 -0800
commit89995dcecf37b9a21c26783dcf8ab506da237363 (patch)
tree851fad01a87b8fa071ed46fa0985f1857d9e47ca /src/lib/testing.go
parent924e27f38d133bc7c9978a061b20f950554434ee (diff)
downloadgolang-89995dcecf37b9a21c26783dcf8ab506da237363.tar.gz
convert *[] to [].
R=r OCL=21563 CL=21571
Diffstat (limited to 'src/lib/testing.go')
-rw-r--r--src/lib/testing.go2
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 {