From 764e1ef8e5787b948f8907c9485f42f61847fea6 Mon Sep 17 00:00:00 2001 From: pdrum Date: Thu, 9 Aug 2018 01:41:52 +0430 Subject: [PATCH] Remove TODO comments from template.go --- pkg/moq/template.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 {