diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/src/test/java/tests/api/java/math/BigIntegerTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/src/test/java/tests/api/java/math/BigIntegerTest.java b/math/src/test/java/tests/api/java/math/BigIntegerTest.java index d04f742..b84aa17 100644 --- a/math/src/test/java/tests/api/java/math/BigIntegerTest.java +++ b/math/src/test/java/tests/api/java/math/BigIntegerTest.java @@ -1299,7 +1299,7 @@ public class BigIntegerTest extends junit.framework.TestCase { try { return super.clone(); } catch (CloneNotSupportedException e) { - return null; + throw new AssertionError(e); // android-changed } } } |