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 /cryptfs/config_test.go | |
parent | f9c21e91aab4799425b25f5fb876c9d95865d9dc (diff) |
Run go fmt and go vet
Diffstat (limited to 'cryptfs/config_test.go')
-rw-r--r-- | cryptfs/config_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cryptfs/config_test.go b/cryptfs/config_test.go index 2e46a25..cd8ed2f 100644 --- a/cryptfs/config_test.go +++ b/cryptfs/config_test.go @@ -26,13 +26,13 @@ func TestLoadV2(t *testing.T) { } elapsed := time.Since(t1) - if elapsed < 100 *time.Millisecond { - t.Errorf("scrypt calculation runs too fast: %d ms", elapsed / time.Millisecond) + if elapsed < 100*time.Millisecond { + t.Errorf("scrypt calculation runs too fast: %d ms", elapsed/time.Millisecond) } } func TestLoadV2PwdError(t *testing.T) { - if ! testing.Verbose() { + if !testing.Verbose() { Warn.Disable() } _, _, err := LoadConfFile("config_test/v2.conf", "wrongpassword") |