]> granicus.if.org Git - icu/commitdiff
ICU-13701 Removing obsolete logKnownIssue since bug is fixed.
authorShane Carr <shane@unicode.org>
Fri, 11 Jan 2019 21:52:47 +0000 (13:52 -0800)
committerShane F. Carr <shane@unicode.org>
Sat, 12 Jan 2019 00:45:39 +0000 (18:45 -0600)
icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/DecimalQuantityTest.java

index 882a6924c3c83a1801446622b36ec553349f0a49..3b7199ee9a636d510ae0e22472b61cc0e318386a 100644 (file)
@@ -518,10 +518,8 @@ public class DecimalQuantityTest extends TestFmwk {
         assertEquals("Should trim, toScientificString", "7.654E+1", dq.toScientificString());
         assertEquals("Should trim, toLong", 76, dq.toLong(true));
         assertEquals("Should trim, toFractionLong", 54, dq.toFractionLong(false));
-        if (!logKnownIssue("13701", "consider cleaning up")) {
-            assertEquals("Should trim, toDouble", 76.54, dq.toDouble());
-            assertEquals("Should trim, toBigDecimal", new BigDecimal("76.54"), dq.toBigDecimal());
-        }
+        assertEquals("Should trim, toDouble", 76.54, dq.toDouble());
+        assertEquals("Should trim, toBigDecimal", new BigDecimal("76.54"), dq.toBigDecimal());
     }
 
     @Test