This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit f017c8cc1e308cc6e411cdcd89453a772b06dc11 Author: Guillaume Nodet <[email protected]> AuthorDate: Mon Jul 27 13:04:59 2020 +0200 [CAMEL-11807] Upgrade camel-msv to junit5 --- components/camel-msv/pom.xml | 2 +- .../org/apache/camel/component/validator/msv/RelaxNGRouteTest.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-msv/pom.xml b/components/camel-msv/pom.xml index 40c518c..f60b82f 100644 --- a/components/camel-msv/pom.xml +++ b/components/camel-msv/pom.xml @@ -59,7 +59,7 @@ <!-- test dependencies --> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-test-spring</artifactId> + <artifactId>camel-test-spring-junit5</artifactId> <scope>test</scope> </dependency> <dependency> diff --git a/components/camel-msv/src/test/java/org/apache/camel/component/validator/msv/RelaxNGRouteTest.java b/components/camel-msv/src/test/java/org/apache/camel/component/validator/msv/RelaxNGRouteTest.java index b732907..2e00b68 100644 --- a/components/camel-msv/src/test/java/org/apache/camel/component/validator/msv/RelaxNGRouteTest.java +++ b/components/camel-msv/src/test/java/org/apache/camel/component/validator/msv/RelaxNGRouteTest.java @@ -16,8 +16,8 @@ */ package org.apache.camel.component.validator.msv; -import org.apache.camel.test.spring.CamelSpringTestSupport; -import org.junit.Test; +import org.apache.camel.test.spring.junit5.CamelSpringTestSupport; +import org.junit.jupiter.api.Test; import org.springframework.context.support.ClassPathXmlApplicationContext; public class RelaxNGRouteTest extends CamelSpringTestSupport {
