fix: prevent stringer deadlock #116 by nbgraham · Pull Request #144 · uber-go/mock

Fixes #116 Problem If your mock an interface that matches the fmt.Stringer interface: type Stringer interface { String() string } Then your unit tests can deadlock if you provide that mock as an ...