mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
swarm/shed: fix TestIncByteSlice test
This commit is contained in:
parent
08a45ee460
commit
6c980ff9c4
1 changed files with 0 additions and 1 deletions
|
|
@ -917,7 +917,6 @@ func TestIncByteSlice(t *testing.T) {
|
||||||
{b: []byte{1, 0}, want: []byte{1, 1}},
|
{b: []byte{1, 0}, want: []byte{1, 1}},
|
||||||
{b: []byte{1, 255}, want: []byte{2, 0}},
|
{b: []byte{1, 255}, want: []byte{2, 0}},
|
||||||
{b: []byte{255, 255}, want: nil},
|
{b: []byte{255, 255}, want: nil},
|
||||||
{b: []byte{255, 255}, want: nil},
|
|
||||||
{b: []byte{32, 0, 255}, want: []byte{32, 1, 0}},
|
{b: []byte{32, 0, 255}, want: []byte{32, 1, 0}},
|
||||||
} {
|
} {
|
||||||
got := incByteSlice(tc.b)
|
got := incByteSlice(tc.b)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue