This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new e850563 CAMEL-14805: Component - Use doInit for wiring instead of doStart e850563 is described below commit e85056360455cdd3f22bebd399c66c085a4e8c40 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed May 27 20:47:45 2020 +0200 CAMEL-14805: Component - Use doInit for wiring instead of doStart --- .../java/org/apache/camel/component/xslt/SaxonInvalidXsltFileTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-saxon/src/test/java/org/apache/camel/component/xslt/SaxonInvalidXsltFileTest.java b/components/camel-saxon/src/test/java/org/apache/camel/component/xslt/SaxonInvalidXsltFileTest.java index 1430b18..5968e29 100644 --- a/components/camel-saxon/src/test/java/org/apache/camel/component/xslt/SaxonInvalidXsltFileTest.java +++ b/components/camel-saxon/src/test/java/org/apache/camel/component/xslt/SaxonInvalidXsltFileTest.java @@ -37,7 +37,7 @@ public class SaxonInvalidXsltFileTest extends TestSupport { fail("Should have thrown an exception due XSL compilation error"); } catch (Exception e) { // expected - assertIsInstanceOf(TransformerException.class, e.getCause().getCause()); + assertIsInstanceOf(TransformerException.class, e.getCause().getCause().getCause()); } }