Break the unit tests to confirm that CI goes red

This commit is contained in:
Ryan Richard 2020-07-02 19:10:24 -07:00
parent 911f8736f1
commit fb6085da39
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ type HelloSayer interface {
type helloSayerImpl struct{}
func (helloSayerImpl) SayHello() string { return "hello" }
func (helloSayerImpl) SayHello() string { return "goodbye" }
func NewHelloSayer() HelloSayer {
return helloSayerImpl{}