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 2020/03/27 11:39:08 UTC

[camel-karaf] branch master updated: Fixed test

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-karaf.git


The following commit(s) were added to refs/heads/master by this push:
     new 0985f32  Fixed test
0985f32 is described below

commit 0985f3281bb6aeb07e89da6906eacbc364dd6c4c
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Mar 27 12:38:55 2020 +0100

    Fixed test
---
 components/camel-osgi-activator/src/assembly/test-bundles.xml           | 2 +-
 .../org/apache/camel/component/osgi/activator/CamelOsgiActivatorIT.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-osgi-activator/src/assembly/test-bundles.xml b/components/camel-osgi-activator/src/assembly/test-bundles.xml
index 7b891b3..8f1bf78 100644
--- a/components/camel-osgi-activator/src/assembly/test-bundles.xml
+++ b/components/camel-osgi-activator/src/assembly/test-bundles.xml
@@ -33,9 +33,9 @@
         <include>org.apache.camel:camel-api</include>
         <include>org.apache.camel:camel-base</include>
         <include>org.apache.camel:camel-core-engine</include>
-        <include>org.apache.camel:camel-core-osgi</include>
         <include>org.apache.camel:camel-core-languages</include>
         <include>org.apache.camel:camel-management-api</include>
+        <include>org.apache.camel.karaf:camel-core-osgi</include>
         <include>org.apache.camel.karaf:camel-osgi-activator</include>
         <include>org.apache.camel:camel-support</include>
         <include>org.apache.camel:camel-util</include>
diff --git a/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/CamelOsgiActivatorIT.java b/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/CamelOsgiActivatorIT.java
index c97b677..98a9bb5 100644
--- a/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/CamelOsgiActivatorIT.java
+++ b/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/CamelOsgiActivatorIT.java
@@ -75,7 +75,7 @@ public class CamelOsgiActivatorIT {
         boolean hasOsgi = false;
         boolean hasCamelCoreOsgiActivator = false;
         for (Bundle b : bc.getBundles()) {
-            if ("org.apache.camel.camel-core-osgi".equals(b.getSymbolicName())) {
+            if ("org.apache.camel.karaf.camel-core-osgi".equals(b.getSymbolicName())) {
                 hasOsgi = true;
                 assertEquals("Camel Core OSGi not activated", Bundle.ACTIVE, b.getState());
             }