Skip to content

Commit

Permalink
fix test size
Browse files Browse the repository at this point in the history
  • Loading branch information
roseduan committed Aug 19, 2023
1 parent 8a8c5d1 commit bff3235
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions segment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ func TestSegment_Write_LargeSize(t *testing.T) {
t.Run("Block-10000", func(t *testing.T) {
testSegmentReaderLargeSize(t, blockSize-chunkHeaderSize, 10000)
})
t.Run("32*Block-10000", func(t *testing.T) {
testSegmentReaderLargeSize(t, 32*blockSize, 10000)
t.Run("32*Block-1000", func(t *testing.T) {
testSegmentReaderLargeSize(t, 32*blockSize, 1000)
})
t.Run("64*Block-100", func(t *testing.T) {
testSegmentReaderLargeSize(t, 64*blockSize, 100)
Expand Down

0 comments on commit bff3235

Please sign in to comment.