This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 3b1b308 Camel-catalog: Fixed tests 3b1b308 is described below commit 3b1b308c42e2eea52d46a2008a88702aea9c9799 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Jun 3 09:00:43 2021 +0200 Camel-catalog: Fixed tests --- .../src/test/java/org/apache/camel/catalog/CamelCatalogTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java b/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java index ce72511..109929d 100644 --- a/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java +++ b/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java @@ -1158,7 +1158,7 @@ public class CamelCatalogTest { public void testLanguageAsciiDoc() { String doc = catalog.languageAsciiDoc("jsonpath"); assertNotNull(doc); - assertTrue(doc.contains("JSonPath language")); + assertTrue(doc.contains("JsonPath language")); } @Test