Better visibility for test result log of TestExec

pull/13/head
Paulo Truta 2021-06-12 13:20:02 +00:00
parent 35442bc156
commit e19a830e29
1 changed files with 1 additions and 1 deletions

View File

@ -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()
}
}