use slice literal

master
lukechampine 2015-08-06 22:56:32 -04:00
parent 640ab74d9d
commit 10fbe96890
1 changed files with 12 additions and 11 deletions

View File

@ -138,17 +138,18 @@ func TestOneEncode(t *testing.T) {
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
shards := make([][]byte, 10) shards := [][]byte{
shards[0] = []byte{0, 1} {0, 1},
shards[1] = []byte{4, 5} {4, 5},
shards[2] = []byte{2, 3} {2, 3},
shards[3] = []byte{6, 7} {6, 7},
shards[4] = []byte{8, 9} {8, 9},
shards[5] = []byte{0, 0} {0, 0},
shards[6] = []byte{0, 0} {0, 0},
shards[7] = []byte{0, 0} {0, 0},
shards[8] = []byte{0, 0} {0, 0},
shards[9] = []byte{0, 0} {0, 0},
}
codec.Encode(shards) codec.Encode(shards)
if shards[5][0] != 12 || shards[5][1] != 13 { if shards[5][0] != 12 || shards[5][1] != 13 {
t.Fatal("shard 5 mismatch") t.Fatal("shard 5 mismatch")