From c715ac45e75bc64462ac82994f33f13a20cc5ca8 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 26 Jan 2022 13:34:26 +0000 Subject: [PATCH] Revert "Force a failing test" This reverts commit 8295f677a74ce6365b6be01119cf078dbd4561a1. --- hello_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello_test.go b/hello_test.go index 867da36..51a22a0 100644 --- a/hello_test.go +++ b/hello_test.go @@ -4,7 +4,7 @@ import "testing" func TestHello(t *testing.T) { got := Hello("Oliver") - want := "Hello, failure" + want := "Hello, Oliver" if got != want { t.Errorf("got %q want %q", got, want)