Skip to content

Commit f1ecebd

Browse files
authored
Merge pull request #18892 from nikhil1980/BAEL-9186-rev
BAEL-9186: Revision in test case
2 parents 05fb8b0 + 0827d04 commit f1ecebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms-modules/algorithms-numeric/src/test/java/com/baeldung/algorithms/bcdtodecimal/BCDtoDecimalConverterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void testConvertPackedByteValidValues() {
1616
// Test 22 (0x22) -> 22
1717
assertEquals(22, BCDtoDecimalConverter.convertPackedByte((byte) 0x22));
1818

19-
// Test 97 (0x097) -> 97
19+
// Test 97 (0x97) -> 97
2020
assertEquals(97, BCDtoDecimalConverter.convertPackedByte((byte) 0x097));
2121
}
2222

0 commit comments

Comments
 (0)