You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2019/11/14 11:37:38 UTC

[camel] 05/05: CAMEL-14167: camel-xslt - Split up into camel-saxon-xslt

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch saxon
in repository https://gitbox.apache.org/repos/asf/camel.git

commit ec6cd959b6bed9bc949e424d93e556065aa3459e
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Nov 14 12:37:11 2019 +0100

    CAMEL-14167: camel-xslt - Split up into camel-saxon-xslt
---
 .../org/apache/camel/component/xslt/ManagedXsltOutputBytesTest.java    | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/core/camel-management/src/test/java/org/apache/camel/component/xslt/ManagedXsltOutputBytesTest.java b/core/camel-management/src/test/java/org/apache/camel/component/xslt/ManagedXsltOutputBytesTest.java
index 474b20b..9c9225c 100644
--- a/core/camel-management/src/test/java/org/apache/camel/component/xslt/ManagedXsltOutputBytesTest.java
+++ b/core/camel-management/src/test/java/org/apache/camel/component/xslt/ManagedXsltOutputBytesTest.java
@@ -54,9 +54,6 @@ public class ManagedXsltOutputBytesTest extends ContextTestSupport {
         String uri = (String) mbeanServer.getAttribute(on, "EndpointUri");
         assertEquals("xslt://org/apache/camel/component/xslt/example.xsl?output=bytes", uri);
 
-        Boolean saxon = (Boolean) mbeanServer.getAttribute(on, "Saxon");
-        assertEquals(false, saxon.booleanValue());
-
         XsltOutput output = (XsltOutput) mbeanServer.getAttribute(on, "Output");
         assertEquals(XsltOutput.bytes, output);