This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
commit 3b2dbe6179a26d43ed6b1813ca5a407e941f01f9 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jun 1 11:38:34 2024 -0400 Let JUnit handle exception --- src/test/java/org/apache/commons/jexl3/parser/ParserTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/test/java/org/apache/commons/jexl3/parser/ParserTest.java b/src/test/java/org/apache/commons/jexl3/parser/ParserTest.java index 44c780fc..6039351c 100644 --- a/src/test/java/org/apache/commons/jexl3/parser/ParserTest.java +++ b/src/test/java/org/apache/commons/jexl3/parser/ParserTest.java @@ -61,8 +61,6 @@ public class ParserTest { fail("should have failed on ambiguous statement"); } catch (final JexlException.Ambiguous xambiguous) { // ok - } catch (final JexlException xother) { - fail(xother.toString()); } }
