You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/08/02 10:47:10 UTC

[camel] 04/05: CAMEL-13792 - Rename components to default names, Camel-mongodb3 to camel-mongodb - SB integration test updated

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

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

commit 68736f7f50ef92047325d3c435b4a25ed9d1b5e2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Aug 2 11:34:17 2019 +0200

    CAMEL-13792 - Rename components to default names, Camel-mongodb3 to camel-mongodb - SB integration test updated
---
 .../springboot/{CamelMongodb3Test.java => CamelMongodbTest.java}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodb3Test.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodbTest.java
similarity index 92%
rename from tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodb3Test.java
rename to tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodbTest.java
index 919d430..5ae7021 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodb3Test.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodbTest.java
@@ -25,7 +25,7 @@ import org.junit.runner.RunWith;
 
 
 @RunWith(Arquillian.class)
-public class CamelMongodb3Test extends AbstractSpringBootTestSupport {
+public class CamelMongodbTest extends AbstractSpringBootTestSupport {
 
     @Deployment
     public static Archive<?> createSpringBootPackage() throws Exception {
@@ -34,7 +34,7 @@ public class CamelMongodb3Test extends AbstractSpringBootTestSupport {
 
     public static ITestConfig createTestConfig() {
         return new ITestConfigBuilder()
-                .module(inferModuleName(CamelMongodb3Test.class))
+                .module(inferModuleName(CamelMongodbTest.class))
                 .includeTestDependencies(false)
                 .unitTestsEnabled(false)
                 .build();