aboutsummaryrefslogtreecommitdiff
path: root/integration_tests
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-01-24 13:07:18 +0100
committerJakob Unterwurzacher2016-01-24 13:07:18 +0100
commitdac9f71089b1f20493b29edcec848ab188944990 (patch)
tree671790ea50f08b85b1e1b30e3871f1ebaf062247 /integration_tests
parent1030522fe6b434c95045986ebe3bec4bf2bad492 (diff)
tests: more helpful error message when the tmp dir cannot be cleared
Diffstat (limited to 'integration_tests')
-rw-r--r--integration_tests/helpers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_tests/helpers.go b/integration_tests/helpers.go
index 8eb5379..d0e8721 100644
--- a/integration_tests/helpers.go
+++ b/integration_tests/helpers.go
@@ -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)
}