diff options
author | Jakob Unterwurzacher | 2015-10-31 15:11:56 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-11-01 01:36:19 +0100 |
commit | 8b7c986bdf29b6bc4f7bf3c2e655552ab4ef4bd3 (patch) | |
tree | 4614665b6e3a58223dff3636d222e9b248a03077 /main_test.go | |
parent | 3e3685127340571dca40f0c16cbaa3d272689f4f (diff) |
tests: Use /tmp/gocryptfs_main_test temporary directory
Using "/tmp" meant that running the test would delete everything
there.
Diffstat (limited to 'main_test.go')
-rw-r--r-- | main_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main_test.go b/main_test.go index b5b2d35..4d21dde 100644 --- a/main_test.go +++ b/main_test.go @@ -14,7 +14,7 @@ import ( "testing" ) -const tmpDir = "/tmp/" +const tmpDir = "/tmp/gocryptfs_main_test/" const plainDir = tmpDir + "plain/" const cipherDir = tmpDir + "cipher/" |