Skip to content

Commit

Permalink
Disable BigDecimal tests with positive exponents, which SNF patch doe…
Browse files Browse the repository at this point in the history
…s not support.
  • Loading branch information
msqr committed Dec 16, 2019
1 parent 0d89bd3 commit c02d615
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ public void testBigDecimalShort() throws Exception
_testBigDecimal(BigDecimal.ONE.scaleByPowerOfTen(-1));
_testBigDecimal(BigDecimal.ONE.scaleByPowerOfTen(-3));
_testBigDecimal(BigDecimal.ONE.scaleByPowerOfTen(-100));
/* Disabled for SNF patch
_testBigDecimal(BigDecimal.ONE.scaleByPowerOfTen(3));
_testBigDecimal(BigDecimal.ONE.scaleByPowerOfTen(137));
*/

_testBigDecimal(new BigDecimal("0.01"));
_testBigDecimal(new BigDecimal("0.33"));
Expand Down

0 comments on commit c02d615

Please sign in to comment.