summaryrefslogtreecommitdiff
path: root/spew/dump_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'spew/dump_test.go')
-rw-r--r--spew/dump_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/spew/dump_test.go b/spew/dump_test.go
index 8024fe4..b0e795f 100644
--- a/spew/dump_test.go
+++ b/spew/dump_test.go
@@ -632,7 +632,7 @@ func addFuncDumpTests() {
var v3 = func(i int, s string) (b bool, err error) {
return true, nil
}
- nv3 := (*func(int, string)(bool, error))(nil)
+ nv3 := (*func(int, string) (bool, error))(nil)
pv3 := &v3
v3Addr := fmt.Sprintf("%p", pv3)
pv3Addr := fmt.Sprintf("%p", &pv3)