diff --git a/src/test/java/com/fasterxml/jackson/core/io/TestNumberInput.java b/src/test/java/com/fasterxml/jackson/core/io/TestNumberInput.java index 3884e7ee06..9c8c42d8d7 100644 --- a/src/test/java/com/fasterxml/jackson/core/io/TestNumberInput.java +++ b/src/test/java/com/fasterxml/jackson/core/io/TestNumberInput.java @@ -62,15 +62,4 @@ public void testParseBigIntegerFailsWithENotation() // expected } } - - public void testParseBigIntegerFailsWithENotation() - { - try { - NumberInput.parseBigInteger("1e10"); - fail("expected NumberFormatException"); - } catch (NumberFormatException nfe) { - // expected - } - } } -