Revert "Break the unit tests to confirm that CI goes red"

This reverts commit fb6085da39.
This commit is contained in:
Ryan Richard 2020-07-02 19:11:06 -07:00
parent fb6085da39
commit 90ff9d57b8
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 "goodbye" }
func (helloSayerImpl) SayHello() string { return "hello" }
func NewHelloSayer() HelloSayer {
return helloSayerImpl{}