Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pivilartisant committed Jul 23, 2024
1 parent f1ff906 commit 4d4a2a4
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 @@ -29,9 +29,9 @@ func TestChunk(t *testing.T) {
return
}

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

assert.Equal(t, len(chunks), expectedChunks)
assert.Equal(t, len(chunks), expectedChunkLen)

})
}
Expand Down

0 comments on commit 4d4a2a4

Please sign in to comment.