swarm/shed: fix TestIncByteSlice test

This commit is contained in:
Janos Guljas 2019-02-28 08:21:26 +01:00
parent 08a45ee460
commit 6c980ff9c4

View file

@ -917,7 +917,6 @@ func TestIncByteSlice(t *testing.T) {
{b: []byte{1, 0}, want: []byte{1, 1}},
{b: []byte{1, 255}, want: []byte{2, 0}},
{b: []byte{255, 255}, want: nil},
{b: []byte{255, 255}, want: nil},
{b: []byte{32, 0, 255}, want: []byte{32, 1, 0}},
} {
got := incByteSlice(tc.b)