Skip to content

Commit

Permalink
fix BitsArray upper boundary validate bug, UT
Browse files Browse the repository at this point in the history
  • Loading branch information
mipengcheng committed Sep 10, 2024
1 parent abd35b5 commit 65ddba1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void testBitBoundaryOverflow() {
@Test(expected = IllegalArgumentException.class)
public void testByteBoundaryOverflow() {
BitsArray bitsArray = BitsArray.create(16);
assertThat(bitsArray.byteLength() ).isEqualTo(2);
assertThat(bitsArray.byteLength()).isEqualTo(2);
bitsArray.getByte(2);
}
}

0 comments on commit 65ddba1

Please sign in to comment.