Update files generated by moq

This commit is contained in:
Lucas Bremgartner
2018-06-05 15:28:15 +02:00
parent 21f1f84c16
commit f70153ef95
5 changed files with 80 additions and 7 deletions

View File

@@ -44,7 +44,7 @@ type ServiceMock struct {
// User calls UserFunc.
func (mock *ServiceMock) User(ID string) (dotimport.User, error) {
if mock.UserFunc == nil {
panic("moq: ServiceMock.UserFunc is nil but Service.User was just called")
panic("ServiceMock.UserFunc: method is nil but Service.User was just called")
}
callInfo := struct {
ID string