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 | d47d888ba663014e6aa8ca043e694f4b2a5898b8 (patch) | |
| tree | 851fad01a87b8fa071ed46fa0985f1857d9e47ca /src/lib/testing.go | |
| parent | 9786f69f74a5fa290476774e07fb10ce8da84123 (diff) | |
| download | go-d47d888ba663014e6aa8ca043e694f4b2a5898b8.tar.xz | |
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 afb24855ba..c5a9761e75 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 { |
