Skip to content

Commit

Permalink
Fix test comments
Browse files Browse the repository at this point in the history
  • Loading branch information
shirolimit committed Jan 29, 2025
1 parent 888c63f commit 226d8cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ public void readZeroTerminatedStringWithHint_shouldThrowExceptionIfStringIsNotZe
public void readBitSet_shouldProperlyDecodeLittleEndianBitSets() {
BitSetTestData[] testData = {
// 0101 1101 0001 0001 -> read 1 byte
// 0101 1101 -> take 8 bits
// 0101 1101 -> take 4 bits
// XXXX 1101 -> 0, 2, 3 bits set
new BitSetTestData(
new byte[]{0x5d, 0x11}, 4, new int[]{0, 2, 3}, 1),
Expand Down Expand Up @@ -357,7 +357,7 @@ public void readBitSet_shouldProduceResultsEqualToByteInputStreamForLittleEndian
public void readBitSet_shouldProperlyDecodeBigEndianBitSets() {
BitSetTestData[] testData = {
// 0101 1101 0001 0001 -> read 1 byte
// 0101 1101 -> take 8 bits
// 0101 1101 -> take 4 bits
// XXXX 1101 -> 0, 2, 3 bits set
new BitSetTestData(
new byte[]{0x5d, 0x11}, 4, new int[]{0, 2, 3}, 1),
Expand Down

0 comments on commit 226d8cc

Please sign in to comment.