You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2024/03/14 08:25:01 UTC

(camel) 03/04: CAMEL-20477: make the shared topic test an integration test for consistency

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

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

commit 320356405383cf38d6ebc262e71dc05c252ba902
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Wed Mar 13 11:05:07 2024 +0100

    CAMEL-20477: make the shared topic test an integration test for consistency
---
 .../consumers/TwoConsumerOnSameQueueIT.java}                          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/TwoConsumerOnSameQueueTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/integration/consumers/TwoConsumerOnSameQueueIT.java
similarity index 98%
rename from components/camel-jms/src/test/java/org/apache/camel/component/jms/TwoConsumerOnSameQueueTest.java
rename to components/camel-jms/src/test/java/org/apache/camel/component/jms/integration/consumers/TwoConsumerOnSameQueueIT.java
index 10b86619e6a..77f5d477db0 100644
--- a/components/camel-jms/src/test/java/org/apache/camel/component/jms/TwoConsumerOnSameQueueTest.java
+++ b/components/camel-jms/src/test/java/org/apache/camel/component/jms/integration/consumers/TwoConsumerOnSameQueueIT.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.camel.component.jms;
+package org.apache.camel.component.jms.integration.consumers;
 
 import java.util.concurrent.TimeUnit;
 
@@ -44,7 +44,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
 
 @Tags({ @Tag("not-parallel") })
 @TestInstance(TestInstance.Lifecycle.PER_METHOD)
-public class TwoConsumerOnSameQueueTest extends CamelTestSupport {
+public class TwoConsumerOnSameQueueIT extends CamelTestSupport {
 
     @RegisterExtension
     public static ArtemisService service = ArtemisServiceFactory.createVMService();