From c913cb8ba517bdcfc5fc5a46df70145e3a30338b Mon Sep 17 00:00:00 2001 From: David Symonds Date: Wed, 27 Jul 2011 13:44:57 +1000 Subject: [PATCH] reflect: rename new TestVariadic to TestVariadicType. R=nigeltao CC=golang-dev https://golang.org/cl/4825050 --- src/pkg/reflect/all_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/reflect/all_test.go b/src/pkg/reflect/all_test.go index 15c69c1f069..257278e8f4f 100644 --- a/src/pkg/reflect/all_test.go +++ b/src/pkg/reflect/all_test.go @@ -1327,7 +1327,7 @@ func TestImportPath(t *testing.T) { } } -func TestVariadic(t *testing.T) { +func TestVariadicType(t *testing.T) { // Test example from Type documentation. var f func(x int, y ...float64) typ := TypeOf(f)