go(util_test.go): use more sensible error message
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-06-29 17:02:13 +02:00
parent b9a4ff3192
commit c8ed8eb82b
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -17,7 +17,7 @@ func TestCreateFolder(t *testing.T) {
var want error
if want != got {
t.Errorf("issue creating folder: got %q", got.Error())
t.Errorf("issue creating folder, testPath: %q, full cmd: %q", testPath, got.Error())
}
os.RemoveAll(testPath)