From 1d0bceef510213c1a0182a8001c11b124360cd88 Mon Sep 17 00:00:00 2001 From: Ruan Bekker Date: Thu, 18 Apr 2019 18:28:44 +0200 Subject: [PATCH] fix tests again --- main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main_test.go b/main_test.go index 63636fd..07d8989 100644 --- a/main_test.go +++ b/main_test.go @@ -10,7 +10,7 @@ func TestMain(m *testing.M) { } func TestHelloWorld(t *testing.T) { - if HelloWorld() != "hello world" { + if HelloWorld() != "hello, world" { t.Errorf("got %s expected %s", HelloWorld(), "hello, world") } }