From e19a830e29cc0848f8fec2e83998b085ffb96f3d Mon Sep 17 00:00:00 2001 From: Paulo Truta Date: Sat, 12 Jun 2021 13:20:02 +0000 Subject: [PATCH] Better visibility for test result log of TestExec --- internal/utils/utils_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/utils/utils_test.go b/internal/utils/utils_test.go index a0670fd..57dab2f 100644 --- a/internal/utils/utils_test.go +++ b/internal/utils/utils_test.go @@ -14,7 +14,7 @@ func TestExec(t *testing.T) { result := Exec("/", testCommand, testArguments) if result != "Hello World" { - t.Log("Expected 'Hello World' but got ", "'"+result+"'") + t.Log("Expected 'Hello World' but got", "'"+result+"'") t.Fail() } }