summaryrefslogtreecommitdiff
path: root/src/lib/testing.go
diff options
context:
space:
mode:
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 1ab85839b..d4abdfb5e 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) {