From fb6085da39d911308847b7c699db3bf7c6a49f99 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Thu, 2 Jul 2020 19:10:24 -0700 Subject: [PATCH] Break the unit tests to confirm that CI goes red --- 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 936c05b8..c05d2f00 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 "hello" } +func (helloSayerImpl) SayHello() string { return "goodbye" } func NewHelloSayer() HelloSayer { return helloSayerImpl{}