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

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

commit a8a6369f71247a8781a5c34e85292d8abcae2783
Author: Croway <[email protected]>
AuthorDate: Wed Jan 28 16:04:57 2026 +0100

    Fix petstore tests
---
 openapi/client/test/petstore-api.json             | 4 ++--
 openapi/client/test/petstore-client.camel.it.yaml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/openapi/client/test/petstore-api.json 
b/openapi/client/test/petstore-api.json
index d21e72b..0476702 100644
--- a/openapi/client/test/petstore-api.json
+++ b/openapi/client/test/petstore-api.json
@@ -30,7 +30,7 @@
     }
   ],
   "paths": {
-    "/pet": {
+    "/petstore/pet": {
       "put": {
         "requestBody": {
           "description": "Pet object that needs to be added to the store",
@@ -102,7 +102,7 @@
         "description": ""
       }
     },
-    "/pet/{petId}": {
+    "/petstore/pet/{petId}": {
       "get": {
         "tags": [
           "pet"
diff --git a/openapi/client/test/petstore-client.camel.it.yaml 
b/openapi/client/test/petstore-client.camel.it.yaml
index d58862a..956420a 100644
--- a/openapi/client/test/petstore-client.camel.it.yaml
+++ b/openapi/client/test/petstore-client.camel.it.yaml
@@ -18,12 +18,12 @@ actions:
           resources:
             - "petstore-api.json"
   - openapi:
-      specification: "../petstore-api.json"
+      specification: "petstore-api.json"
       server: "petstoreServer"
       receiveRequest:
         operation: addPet
   - openapi:
-      specification: "../petstore-api.json"
+      specification: "petstore-api.json"
       server: "petstoreServer"
       sendResponse:
         operation: addPet

Reply via email to