You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2021/01/12 18:41:21 UTC

[camel-quarkus] branch master updated: add missing QuarkusTestResource

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

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


The following commit(s) were added to refs/heads/master by this push:
     new ae3dce1  add missing QuarkusTestResource
ae3dce1 is described below

commit ae3dce1590ad55c664272ff90d1cc242ff5d18d0
Author: Zineb Bendhiba <be...@gmail.com>
AuthorDate: Tue Jan 12 17:43:02 2021 +0100

    add missing QuarkusTestResource
---
 .../apache/camel/quarkus/component/hazelcast/it/HazelcastQueueTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/integration-tests/hazelcast/src/test/java/org/apache/camel/quarkus/component/hazelcast/it/HazelcastQueueTest.java b/integration-tests/hazelcast/src/test/java/org/apache/camel/quarkus/component/hazelcast/it/HazelcastQueueTest.java
index f0e13bc..2bb71f7 100644
--- a/integration-tests/hazelcast/src/test/java/org/apache/camel/quarkus/component/hazelcast/it/HazelcastQueueTest.java
+++ b/integration-tests/hazelcast/src/test/java/org/apache/camel/quarkus/component/hazelcast/it/HazelcastQueueTest.java
@@ -18,6 +18,7 @@ package org.apache.camel.quarkus.component.hazelcast.it;
 
 import java.util.Arrays;
 
+import io.quarkus.test.common.QuarkusTestResource;
 import io.quarkus.test.common.http.TestHTTPEndpoint;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.http.ContentType;
@@ -30,6 +31,7 @@ import static org.hamcrest.Matchers.hasSize;
 
 @QuarkusTest
 @TestHTTPEndpoint(HazelcastQueueResource.class)
+@QuarkusTestResource(HazelcastTestResource.class)
 public class HazelcastQueueTest {
     @Test
     public void testQueue() {