aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()