From 4c1331b42c74492a99ae9fd0edccd1bbf1aee98e Mon Sep 17 00:00:00 2001 From: Eyal Posener Date: Tue, 6 Mar 2018 06:55:39 +0200 Subject: [PATCH] Anything: remove unecessary type --- mock/mock.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mock/mock.go b/mock/mock.go index edc888a91..8e094c4a3 100644 --- a/mock/mock.go +++ b/mock/mock.go @@ -528,7 +528,7 @@ type Arguments []interface{} const ( // Anything is used in Diff and Assert when the argument being tested // shouldn't be taken into consideration. - Anything string = "mock.Anything" + Anything = "mock.Anything" ) // AnythingOfTypeArgument is a string that contains the type of an argument