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

(camel-quarkus) 06/26: Fix failing CamelBeansUnremovableTest tests

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

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

commit d59d68b9921d59084ae5ebad23a0e07c3019c89e
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Mar 8 13:33:11 2024 +0000

    Fix failing CamelBeansUnremovableTest tests
---
 .../camel/quarkus/core/runtime/CamelBeansUnremovableTest.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/runtime/CamelBeansUnremovableTest.java b/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/runtime/CamelBeansUnremovableTest.java
index 80b6382891..ecd7d2896c 100644
--- a/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/runtime/CamelBeansUnremovableTest.java
+++ b/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/runtime/CamelBeansUnremovableTest.java
@@ -39,15 +39,15 @@ import org.junit.jupiter.api.extension.RegisterExtension;
 
 public class CamelBeansUnremovableTest {
 
-    static final String RESSOURCE_PATH = "org/apache/camel/quarkus/core/runtime/"
+    static final String RESOURCE_PATH = "META-INF/org/apache/camel/quarkus/core/runtime/"
             + CamelBeansUnremovableTest.class.getSimpleName();
 
     @RegisterExtension
     static final QuarkusUnitTest CONFIG = new QuarkusUnitTest()
             .setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)
-                    .addAsResource("custom-component.json", RESSOURCE_PATH + "/custom-component.json")
-                    .addAsResource("custom-dataformat.json", RESSOURCE_PATH + "/custom-dataformat.json")
-                    .addAsResource("custom-language.json", RESSOURCE_PATH + "/custom-language.json"));
+                    .addAsResource("custom-component.json", RESOURCE_PATH + "/custom-component.json")
+                    .addAsResource("custom-dataformat.json", RESOURCE_PATH + "/custom-dataformat.json")
+                    .addAsResource("custom-language.json", RESOURCE_PATH + "/custom-language.json"));
 
     @Inject
     CamelContext context;