This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 93d72819c59672b365662b2b92c3d036642329b1 Author: Claus Ibsen <[email protected]> AuthorDate: Sat Jul 5 12:35:47 2025 +0200 CAMEL-22219: Update test --- .../src/test/java/org/apache/camel/catalog/CamelCatalogTest.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 b0e3c98751f..9df3583743f 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 @@ -1221,11 +1221,13 @@ public class CamelCatalogTest { uri = "twilio:account/update?pathSid=123"; result = catalog.validateEndpointProperties(uri); assertTrue(result.isSuccess()); - uri = "twilio:account/read"; + uri = "twilio:account/insert"; result = catalog.validateEndpointProperties(uri); assertFalse(result.isSuccess()); - assertEquals(2, result.getEnumChoices("methodName").size()); + assertEquals(4, result.getEnumChoices("methodName").size()); + assertTrue(result.getEnumChoices("methodName").contains("create")); assertTrue(result.getEnumChoices("methodName").contains("fetch")); + assertTrue(result.getEnumChoices("methodName").contains("read")); assertTrue(result.getEnumChoices("methodName").contains("update")); uri = "twilio:account/read?pathSid=123";
