ICU-11276 One more attempt at fixing test failure.

This commit is contained in:
Shane Carr 2018-09-07 12:15:20 -07:00
parent d717184948
commit af091cc15a
No known key found for this signature in database
GPG key ID: FCED3B24AAB18B5C
2 changed files with 4 additions and 2 deletions

View file

@ -1161,7 +1161,8 @@ bool DecimalQuantity::operator==(const DecimalQuantity& other) const {
&& lOptPos == other.lOptPos
&& lReqPos == other.lReqPos
&& rReqPos == other.rReqPos
&& rOptPos == other.rOptPos;
&& rOptPos == other.rOptPos
&& isApproximate == other.isApproximate;
if (!basicEquals) {
return false;
}

View file

@ -1034,7 +1034,8 @@ public abstract class DecimalQuantity_AbstractBCD implements DecimalQuantity {
&& lOptPos == _other.lOptPos
&& lReqPos == _other.lReqPos
&& rReqPos == _other.rReqPos
&& rOptPos == _other.rOptPos;
&& rOptPos == _other.rOptPos
&& isApproximate == _other.isApproximate;
if (!basicEquals) {
return false;
}