From 7b80f7f03b91d472a373ac3a70085ae3af077ea3 Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Sat, 13 Apr 2024 05:06:43 +0200 Subject: [PATCH] helpers_test.go: removed the printed messages "Hello World!" --- helpers_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/helpers_test.go b/helpers_test.go index 74fe464..4589013 100644 --- a/helpers_test.go +++ b/helpers_test.go @@ -45,7 +45,6 @@ func TestEvalStringA(t *testing.T) { t.Errorf("Source %q got %v, want %v", source, gotResult, wantResult) t.Errorf("Error: %v", gotErr) } - fmt.Println("Hello World!") } func TestEvalString(t *testing.T) { @@ -76,5 +75,4 @@ func TestEvalString(t *testing.T) { t.Errorf("Source %q got %v, want %v", source, gotResult, wantResult) t.Errorf("Error: %v", gotErr) } - fmt.Println("Hello World!") }