FC18: Fixed typo of choco choped pig unit test

This commit is contained in:
Willem Cazander 2025-09-05 19:32:08 +02:00
parent 79cb6c02f1
commit abbe07d2a0

View file

@ -44,9 +44,6 @@ public class StenoNumberChocoChopedTest {
List<Integer> outX18 = new ArrayList<>();
FourCornerZion7Candlelier writerX18 = FourCornerZionStenoGrapher.writerX18(outX18);
writerX18.strobeNumberChocoPigChoped(FCFlameNumberTaste.NUMBER_POSITIVE, BigInteger.valueOf(456), BigInteger.valueOf(123));
for (Integer c : outX18) {
System.out.println("c = " + Integer.toHexString(c));
}
String resX18 = FourCornerUnicodeDisplay.text().renderFromInt18(outX18);
Assertions.assertEquals("456.123", resX18);
}
@ -57,6 +54,6 @@ public class StenoNumberChocoChopedTest {
FourCornerZion7Candlelier writerX18 = FourCornerZionStenoGrapher.writerX18(outX18);
writerX18.strobeNumberChocoPigChoped(FCFlameNumberTaste.NUMBER_NEGATIVE, BigInteger.valueOf(789), BigInteger.valueOf(123));
String resX18 = FourCornerUnicodeDisplay.text().renderFromInt18(outX18);
Assertions.assertEquals("-789;123", resX18);
Assertions.assertEquals("-789.123", resX18);
}
}