Minor text fixes
This commit is contained in:
parent
1612ec6a1b
commit
243286b9cd
|
@ -283,7 +283,7 @@ public class TestRunner {
|
|||
if (!Arrays.equals(expectedHReturn, actualHReturn)) {
|
||||
|
||||
String output =
|
||||
String.format("HReturn is differnt expected hReturn: [ %s ], actual hReturn: [ %s ]",
|
||||
String.format("HReturn is different expected hReturn: [ %s ], actual hReturn: [ %s ]",
|
||||
Hex.toHexString(expectedHReturn),
|
||||
Hex.toHexString(actualHReturn));
|
||||
logger.info(output);
|
||||
|
|
|
@ -237,7 +237,7 @@ public class DataWord implements Comparable<DataWord> {
|
|||
return;
|
||||
}
|
||||
|
||||
BigInteger result = sValue().mod( word.sValue());
|
||||
BigInteger result = sValue().mod(word.sValue());
|
||||
|
||||
ByteBuffer data = ByteBuffer.allocate(32);
|
||||
if (result.signum() == -1)
|
||||
|
|
Loading…
Reference in New Issue