Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pivilartisant committed Jul 24, 2024
1 parent 666fc8a commit 6b68794
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/website/chunk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ func TestChunk(t *testing.T) {
return
}

// expectedLen := (len(test.data) + test.chunkSize - 1) / test.chunkSize
expectedLen := (len(test.data) + test.chunkSize - 1) / test.chunkSize

assert.Equal(t, len(chunks), 1)
assert.Equal(t, len(chunks), expectedLen)
})
}
}

0 comments on commit 6b68794

Please sign in to comment.