diff options
author | Jakob Unterwurzacher | 2015-11-14 17:16:17 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-11-14 17:16:17 +0100 |
commit | 61aacb5c1bd3368366484b9e03cf90ccf85f1125 (patch) | |
tree | d62d9fed9fb500a6051e2b4919a094fd1556de24 /integration_tests/helpers.go | |
parent | f9c21e91aab4799425b25f5fb876c9d95865d9dc (diff) |
Run go fmt and go vet
Diffstat (limited to 'integration_tests/helpers.go')
-rw-r--r-- | integration_tests/helpers.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/integration_tests/helpers.go b/integration_tests/helpers.go index 9bfd9fc..fdad28b 100644 --- a/integration_tests/helpers.go +++ b/integration_tests/helpers.go @@ -1,17 +1,19 @@ package integration_tests import ( - "os" - "os/exec" - "fmt" - "io/ioutil" "crypto/md5" "encoding/hex" + "fmt" + "io/ioutil" + "os" + "os/exec" "testing" ) const tmpDir = "/tmp/gocryptfs_main_test/" + // Mountpoint +// Note: the code assumes that both have a trailing slash! const plainDir = tmpDir + "plain/" const cipherDir = tmpDir + "cipher/" |