You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2019/02/08 09:54:34 UTC

[camel] 18/19: CAMEL-12618: Fix SimpleTest on Java 11+

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

zregvart pushed a commit to branch java-10-test
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 92677c2ac7dbdfc372d9da69c296b4250dbb5bb8
Author: Zoran Regvart <zr...@apache.org>
AuthorDate: Wed Nov 14 15:29:03 2018 +0100

    CAMEL-12618: Fix SimpleTest on Java 11+
---
 .../src/test/java/org/apache/camel/language/simple/SimpleTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-core/src/test/java/org/apache/camel/language/simple/SimpleTest.java b/camel-core/src/test/java/org/apache/camel/language/simple/SimpleTest.java
index 81170c6..cc69ccd 100644
--- a/camel-core/src/test/java/org/apache/camel/language/simple/SimpleTest.java
+++ b/camel-core/src/test/java/org/apache/camel/language/simple/SimpleTest.java
@@ -48,7 +48,7 @@ import org.junit.Test;
 public class SimpleTest extends LanguageTestSupport {
 
     private static final String JAVA8_INDEX_OUT_OF_BOUNDS_ERROR_MSG = "Index: 2, Size: 2";
-    private static final String INDEX_OUT_OF_BOUNDS_ERROR_MSG = "Index 2 out-of-bounds for length 2";
+    private static final String INDEX_OUT_OF_BOUNDS_ERROR_MSG = "Index 2 out of bounds for length 2";
 
     @Override
     protected JndiRegistry createRegistry() throws Exception {