diff options
author | Jakob Unterwurzacher | 2016-10-08 19:22:59 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-10-08 19:22:59 +0200 |
commit | 8c89e2da0ca3a2c901bfe067904b623a4da6f6a7 (patch) | |
tree | 145686ddef0cfa9c00a82ef4961fc159fd449af5 /tests/test_helpers/helpers.go | |
parent | 29c8ca85d836f560837b0be51114b7a2931cf5bd (diff) |
tests: invert ResetTmpDir argument
As reverse also does not want a diriv file, the "plaintextNames"
argument became a misnomer.
Diffstat (limited to 'tests/test_helpers/helpers.go')
-rw-r--r-- | tests/test_helpers/helpers.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_helpers/helpers.go b/tests/test_helpers/helpers.go index c38bbf2..479da69 100644 --- a/tests/test_helpers/helpers.go +++ b/tests/test_helpers/helpers.go @@ -48,7 +48,7 @@ func init() { // |-- DefaultPlainDir // *-- DefaultCipherDir // *-- gocryptfs.diriv -func ResetTmpDir(plaintextNames bool) { +func ResetTmpDir(createDirIV bool) { // Try to unmount and delete everything entries, err := ioutil.ReadDir(TmpDir) if err == nil { @@ -83,7 +83,7 @@ func ResetTmpDir(plaintextNames bool) { if err != nil { panic(err) } - if !plaintextNames { + if createDirIV { err = nametransform.WriteDirIV(DefaultCipherDir) if err != nil { panic(err) |