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 362a4f5e23c079c79574672e422d1b3662979a30 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Aug 6 10:45:31 2019 +0200 CAMEL-13792 - Rename components to default names, Camel-quartz2 to camel-quartz - SB integration test updated --- .../itest/springboot/{CamelQuartz2Test.java => CamelQuartzTest.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/CamelQuartz2Test.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelQuartzTest.java similarity index 92% rename from tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelQuartz2Test.java rename to tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelQuartzTest.java index fff63cb..afa9a4d 100644 --- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelQuartz2Test.java +++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelQuartzTest.java @@ -25,7 +25,7 @@ import org.junit.runner.RunWith; @RunWith(Arquillian.class) -public class CamelQuartz2Test extends AbstractSpringBootTestSupport { +public class CamelQuartzTest extends AbstractSpringBootTestSupport { @Deployment public static Archive<?> createSpringBootPackage() throws Exception { @@ -34,7 +34,7 @@ public class CamelQuartz2Test extends AbstractSpringBootTestSupport { public static ITestConfig createTestConfig() { return new ITestConfigBuilder() - .module(inferModuleName(CamelQuartz2Test.class)) + .module(inferModuleName(CamelQuartzTest.class)) .unitTestExclusionPattern(".*(\\.integration\\..*|IntegrationTest$|BaseQuartzTest$|QuartzTwoCamelContextSameNameClashTest$)") // unrelated test .build(); }
