aboutsummaryrefslogtreecommitdiff
path: root/src/lib/testing.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-30 14:39:31 -0800
committerRuss Cox <rsc@golang.org>2009-01-30 14:39:31 -0800
commit4cf7711568da9510bae09338e03a66049767c851 (patch)
tree23faccc99f2fcc5de337a139fb7b812a8a2f3137 /src/lib/testing.go
parentb59dbd7fe07a80c2081e5932fb21f4ec7caa62cb (diff)
downloadgo-4cf7711568da9510bae09338e03a66049767c851.tar.xz
update go code tree to new func rules.
R=r DELTA=367 (111 added, 59 deleted, 197 changed) OCL=23957 CL=23960
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 1ab85839b3..d4abdfb5e4 100644
--- a/src/lib/testing.go
+++ b/src/lib/testing.go
@@ -71,7 +71,7 @@ func (t *T) Fatalf(format string, args ...) {
type Test struct {
Name string;
- F *(*T);
+ F func(*T);
}
func tRunner(t *T, test *Test) {