diff --git a/pkg/moq/template.go b/pkg/moq/template.go index 8f55df1..31a6c60 100644 --- a/pkg/moq/template.go +++ b/pkg/moq/template.go @@ -29,12 +29,12 @@ var ( // // make and configure a mocked {{.InterfaceName}} // mocked{{.InterfaceName}} := &{{.InterfaceName}}Mock{ {{ range .Methods }} // {{.Name}}Func: func({{ .Arglist }}) {{.ReturnArglist}} { -// panic("TODO: mock out the {{.Name}} method") +// panic("mock out the {{.Name}} method") // },{{- end }} // } // -// // TODO: use mocked{{.InterfaceName}} in code that requires {{.InterfaceName}} -// // and then make assertions. +// // use mocked{{.InterfaceName}} in code that requires {{.InterfaceName}} +// // and then make assertions. // // } type {{.InterfaceName}}Mock struct {