Skip to content

Commit

Permalink
trim
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Sep 17, 2024
1 parent 9aba17d commit 22f8612
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions roaring64/serialization_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ func TestSerializationOfEmptyBitmap(t *testing.T) {

require.NoError(t, err)
assert.EqualValues(t, buf.Len(), rb.GetSerializedSizeInBytes())
data := buf.Bytes()

newrb := NewBitmap()
_, err = newrb.ReadFrom(buf)
Expand Down Expand Up @@ -56,7 +55,6 @@ func TestSerializationBasic037(t *testing.T) {

require.NoError(t, err)
assert.EqualValues(t, buf.Len(), rb.GetSerializedSizeInBytes())
data := buf.Bytes()

newrb := NewBitmap()
_, err = newrb.ReadFrom(buf)
Expand Down Expand Up @@ -112,7 +110,6 @@ func TestSerializationBasic2_041(t *testing.T) {

require.NoError(t, err)
assert.Equal(t, l, buf.Len())
data := buf.Bytes()

newrb := NewBitmap()
_, err = newrb.ReadFrom(buf)
Expand All @@ -133,7 +130,6 @@ func TestSerializationBasic3_042(t *testing.T) {

require.NoError(t, err)
assert.EqualValues(t, buf.Len(), int(rb.GetSerializedSizeInBytes()))
data := buf.Bytes()

newrb := NewBitmap()
_, err = newrb.ReadFrom(&buf)
Expand Down

0 comments on commit 22f8612

Please sign in to comment.