diff options
author | Jakob Unterwurzacher | 2016-07-11 20:31:36 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-07-11 20:41:16 +0200 |
commit | 1c54fcd04bbf274dd5d4300e433bdcb1bb32e1ce (patch) | |
tree | db467866f9435cb493f1ee321f54b37032aec7a3 /tests/plaintextnames | |
parent | 621cbad5e139a0bdbfde598d3c8ce82b0d43af66 (diff) |
tests: use unmount wrapper in ResetTmpDir
This should make it work on OSX.
Also, split unmount into two functions. Depending on what you
want,
* UnmountErr returns the resulting error
* UnmountPanic panics if the error was not nil
Diffstat (limited to 'tests/plaintextnames')
-rw-r--r-- | tests/plaintextnames/plaintextnames_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plaintextnames/plaintextnames_test.go b/tests/plaintextnames/plaintextnames_test.go index 6c6d272..3523c25 100644 --- a/tests/plaintextnames/plaintextnames_test.go +++ b/tests/plaintextnames/plaintextnames_test.go @@ -21,7 +21,7 @@ func TestMain(m *testing.M) { pDir = cDir + ".mnt" test_helpers.MountOrExit(cDir, pDir, "-extpass", "echo test") r := m.Run() - test_helpers.Unmount(pDir) + test_helpers.UnmountPanic(pDir) os.Exit(r) } |