helpers_test.go: removed the printed messages "Hello World!"

This commit is contained in:
Celestino Amoroso 2024-04-13 05:06:43 +02:00
parent 7f9fd570b2
commit 7b80f7f03b

View File

@ -45,7 +45,6 @@ func TestEvalStringA(t *testing.T) {
t.Errorf("Source %q got %v, want %v", source, gotResult, wantResult) t.Errorf("Source %q got %v, want %v", source, gotResult, wantResult)
t.Errorf("Error: %v", gotErr) t.Errorf("Error: %v", gotErr)
} }
fmt.Println("Hello World!")
} }
func TestEvalString(t *testing.T) { 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("Source %q got %v, want %v", source, gotResult, wantResult)
t.Errorf("Error: %v", gotErr) t.Errorf("Error: %v", gotErr)
} }
fmt.Println("Hello World!")
} }