I'm a co-maintainer of github.com/stretchr/testify. In v1.9.0 we have deprecated mock.AnythingOfTypeArgument.
I had a look at this project. All instances of mock.AnythingOfTypeArgument must just be replaced by mock.AnythingOfType. That fix will work both with v1.9.0 and with previous releases of testify.
I'm a co-maintainer of
github.com/stretchr/testify
. Inv1.9.0
we have deprecatedmock.AnythingOfTypeArgument
.I had a look at this project. All instances of
mock.AnythingOfTypeArgument
must just be replaced bymock.AnythingOfType
. That fix will work both withv1.9.0
and with previous releases of testify.