From 61aacb5c1bd3368366484b9e03cf90ccf85f1125 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sat, 14 Nov 2015 17:16:17 +0100 Subject: Run go fmt and go vet --- integration_tests/helpers.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'integration_tests/helpers.go') 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/" -- cgit v1.2.3