tests: more helpful error message when the tmp dir cannot be cleared

This commit is contained in:
Jakob Unterwurzacher 2016-01-24 13:07:18 +01:00
parent 1030522fe6
commit dac9f71089
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ func resetTmpDir() {
err := os.RemoveAll(tmpDir)
if err != nil {
fmt.Println(err)
fmt.Println("resetTmpDir: RemoveAll:" + err.Error())
os.Exit(1)
}