From: David Symonds Date: Wed, 27 Jul 2011 03:44:57 +0000 (+1000) Subject: reflect: rename new TestVariadic to TestVariadicType. X-Git-Tag: weekly.2011-07-29~44 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c913cb8ba517bdcfc5fc5a46df70145e3a30338b;p=gostls13.git reflect: rename new TestVariadic to TestVariadicType. R=nigeltao CC=golang-dev https://golang.org/cl/4825050 --- diff --git a/src/pkg/reflect/all_test.go b/src/pkg/reflect/all_test.go index 15c69c1f06..257278e8f4 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)