You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by jb...@apache.org on 2023/04/17 17:06:37 UTC

[camel-quarkus] branch main updated: Fix Spring integration test (#4788)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 567c89c735 Fix Spring integration test (#4788)
567c89c735 is described below

commit 567c89c735c233dfe95db263143b51442b5b238e
Author: JB Onofré <jb...@apache.org>
AuthorDate: Mon Apr 17 19:06:31 2023 +0200

    Fix Spring integration test (#4788)
---
 .../org/apache/camel/quarkus/support/spring/test/SpringSupportTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extensions-support/spring/integration-test/src/test/java/org/apache/camel/quarkus/support/spring/test/SpringSupportTest.java b/extensions-support/spring/integration-test/src/test/java/org/apache/camel/quarkus/support/spring/test/SpringSupportTest.java
index c14a16d814..7817655aff 100644
--- a/extensions-support/spring/integration-test/src/test/java/org/apache/camel/quarkus/support/spring/test/SpringSupportTest.java
+++ b/extensions-support/spring/integration-test/src/test/java/org/apache/camel/quarkus/support/spring/test/SpringSupportTest.java
@@ -61,7 +61,7 @@ public class SpringSupportTest {
     public void verifySourcesJarManifest() throws Exception {
         String[] springModules = new String[] { "beans", "context", "core" };
         for (String module : springModules) {
-            Path path = Paths.get("../" + module + "/target");
+            Path path = Paths.get("../shade/" + module + "/target");
             File file = path.toFile();
             if (!file.exists()) {
                 throw new IllegalStateException("The sources JAR location does not exist: " + file.getAbsolutePath());