You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2023/06/01 15:51:13 UTC

[camel-quarkus-examples] 21/22: Fix rest-json tests

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

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

commit 379da04e280dd0dc39839d3a312579fd1bd3445a
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue May 16 10:06:46 2023 +0100

    Fix rest-json tests
---
 rest-json/src/main/java/org/acme/rest/json/Routes.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rest-json/src/main/java/org/acme/rest/json/Routes.java b/rest-json/src/main/java/org/acme/rest/json/Routes.java
index 1d4c4be..d2a5f3a 100644
--- a/rest-json/src/main/java/org/acme/rest/json/Routes.java
+++ b/rest-json/src/main/java/org/acme/rest/json/Routes.java
@@ -33,7 +33,7 @@ public class Routes extends RouteBuilder {
     public Routes() {
 
         /* Let's add some initial fruits */
-        this.fruits.add(new Fruit("Apples", "Winter fruit"));
+        this.fruits.add(new Fruit("Apple", "Winter fruit"));
         this.fruits.add(new Fruit("Pineapple", "Tropical fruit"));
 
         /* Let's add some initial legumes */