Repository: camel
Updated Branches:
  refs/heads/master 84adb90f7 -> af47d5178


Fixed test


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/af47d517
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/af47d517
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/af47d517

Branch: refs/heads/master
Commit: af47d517866fe8dd26d7b856a30484dd138d7a84
Parents: 84adb90
Author: Claus Ibsen <davscl...@apache.org>
Authored: Sat Aug 23 08:47:38 2014 +0200
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Sat Aug 23 08:47:38 2014 +0200

----------------------------------------------------------------------
 .../camel/itest/osgi/core/seda/SedaTest.java       | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/af47d517/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/core/seda/SedaTest.java
----------------------------------------------------------------------
diff --git 
a/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/core/seda/SedaTest.java
 
b/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/core/seda/SedaTest.java
index 78e3214..199a1d9 100644
--- 
a/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/core/seda/SedaTest.java
+++ 
b/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/osgi/core/seda/SedaTest.java
@@ -46,21 +46,6 @@ public class SedaTest extends OSGiIntegrationTestSupport {
         mock.expectedBodiesReceived("Hello World");
         template.sendBody("seda:foo", "Hello World");
         assertMockEndpointsSatisfied();        
-    }
-    
-    @Test
-    public void testCamelContextName() throws Exception {
-        // should get the context name with osgi bundle id
-        String name1 = context.getName();
-
-        CamelContext context2 = createCamelContext();
-        String name2 = context2.getName();
-
-        assertNotSame(name1, name2);
-
-        String id = "" + bundleContext.getBundle().getBundleId();
-        assertTrue(name1 + " does not start with " + id, name1.startsWith(id));
-        assertTrue(name2 + " does not start with " + id, name2.startsWith(id));
-    }
+    }   
    
 }
\ No newline at end of file

Reply via email to