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

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

commit 8377b98239c95fd2106ce5dc275d89ab01b6c929
Author: James Netherton <[email protected]>
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 */

Reply via email to