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/content_test.go | |
parent | f9c21e91aab4799425b25f5fb876c9d95865d9dc (diff) |
Run go fmt and go vet
Diffstat (limited to 'cryptfs/content_test.go')
-rw-r--r-- | cryptfs/content_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptfs/content_test.go b/cryptfs/content_test.go index dbedf87..1b269bd 100644 --- a/cryptfs/content_test.go +++ b/cryptfs/content_test.go @@ -57,7 +57,7 @@ func TestCiphertextRange(t *testing.T) { skipBytes := blocks[0].Skip if alignedLength < r.length { - t.Errorf("alignedLength=%s is smaller than length=%d", alignedLength, r.length) + t.Errorf("alignedLength=%d is smaller than length=%d", alignedLength, r.length) } if (alignedOffset-HEADER_LEN)%f.cipherBS != 0 { t.Errorf("alignedOffset=%d is not aligned", alignedOffset) |