aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2017-09-09 00:25:29 +0200
committerDimitri Sokolyuk <demon@dim13.org>2017-09-09 00:25:29 +0200
commit1c9ece4a704b9516a9f88562d56f3272cb67dccc (patch)
treec08e7ead00d78206cfc96db3f0386675d5550306
parent85d694028bf5833be059d12b7f427505cde9e85b (diff)
gofmt -s
-rw-r--r--zsig/header_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/zsig/header_test.go b/zsig/header_test.go
index 38893e6..678db54 100644
--- a/zsig/header_test.go
+++ b/zsig/header_test.go
@@ -17,8 +17,8 @@ func TestZHeader(t *testing.T) {
Alg: Alg,
BlockSize: BlockSize,
Sums: [][]byte{
- []byte{0, 1, 2, 3, 4, 5},
- []byte{6, 7, 8, 9, 10},
+ {0, 1, 2, 3, 4, 5},
+ {6, 7, 8, 9, 10},
},
}
body, err := h.MarshalText()