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 d27340f6e56ede4f2bdcca3652d047ccb884879d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jun 1 18:03:15 2024 -0400 Let JUnit handle exception --- src/test/java/org/apache/commons/jexl3/IssuesTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/test/java/org/apache/commons/jexl3/IssuesTest.java b/src/test/java/org/apache/commons/jexl3/IssuesTest.java index 8cf23c08..bdbf2891 100644 --- a/src/test/java/org/apache/commons/jexl3/IssuesTest.java +++ b/src/test/java/org/apache/commons/jexl3/IssuesTest.java @@ -211,8 +211,6 @@ public class IssuesTest extends JexlTestCase { fail("Should have failed due to invalid assignment"); } catch (final JexlException.Assignment xparse) { final String dbg = xparse.toString(); - } catch (final JexlException xjexl) { - fail("Should have thrown a parse exception"); } }