From 6bed304244493508191501ad63fdc74b41e19653 Mon Sep 17 00:00:00 2001 From: Cuong Manh Le Date: Wed, 5 Feb 2020 10:32:44 +0700 Subject: [PATCH] test: fix issue 15992 test wrong function call Change-Id: I623ae5faffce456b34d97a2a0aa277ecbf1990f0 Reviewed-on: https://go-review.googlesource.com/c/go/+/217699 Run-TryBot: Cuong Manh Le TryBot-Result: Gobot Gobot Reviewed-by: Matthew Dempsky --- test/fixedbugs/issue15992.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixedbugs/issue15992.go b/test/fixedbugs/issue15992.go index 957bb89fac..cda5527c67 100644 --- a/test/fixedbugs/issue15992.go +++ b/test/fixedbugs/issue15992.go @@ -28,7 +28,7 @@ func main() { fmt.Println(n, a) b := []byte{1, 2, 3} - n = copy(f(b)) + n = copy(g(b)) fmt.Println(n, b) m := map[int]int{0: 0} -- 2.50.0