From 8b22659c9ecc05097ef99360f49f35479d579cc0 Mon Sep 17 00:00:00 2001 From: Kyle Penfound Date: Mon, 26 Feb 2024 11:09:33 -0500 Subject: [PATCH] update greeting Signed-off-by: Kyle Penfound --- main.go | 2 +- main_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index aebb5c3..a019ee6 100644 --- a/main.go +++ b/main.go @@ -41,6 +41,6 @@ func main() { } func greeting() string { - greeting := "Hello Kubecon!" + greeting := "Hello Daggernauts!" return fmt.Sprintf("{\"greeting\":\"%s\"}", greeting) } diff --git a/main_test.go b/main_test.go index 5d78061..c4431f1 100644 --- a/main_test.go +++ b/main_test.go @@ -8,7 +8,7 @@ import ( func TestGreeting(t *testing.T) { g := greeting() - should := "{\"greeting\":\"Hello Kubecon!\"}" + should := "{\"greeting\":\"Hello Daggernauts!\"}" assert.Equal(t, should, g) }