From 90ff9d57b887a5b2a6ce8b84ec8b3a670e217f37 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Thu, 2 Jul 2020 19:11:06 -0700 Subject: [PATCH] Revert "Break the unit tests to confirm that CI goes red" This reverts commit fb6085da39d911308847b7c699db3bf7c6a49f99. --- pkg/hello/hello.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/hello/hello.go b/pkg/hello/hello.go index c05d2f00..936c05b8 100644 --- a/pkg/hello/hello.go +++ b/pkg/hello/hello.go @@ -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{}