You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/11/19 08:13:17 UTC

[08/12] camel git commit: Component docs fixed test

Component docs fixed test


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a56e2d81
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a56e2d81
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a56e2d81

Branch: refs/heads/camel-2.16.x
Commit: a56e2d81cbd8c114b98ca9801f3089e7f1f1b7cf
Parents: a0d9c08
Author: Claus Ibsen <da...@apache.org>
Authored: Thu Nov 19 07:23:39 2015 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Thu Nov 19 08:12:10 2015 +0100

----------------------------------------------------------------------
 .../apache/camel/component/beanstalk/UriConfigurationTest.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a56e2d81/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/UriConfigurationTest.java
----------------------------------------------------------------------
diff --git a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/UriConfigurationTest.java b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/UriConfigurationTest.java
index 998c112..3f5d464 100644
--- a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/UriConfigurationTest.java
+++ b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/UriConfigurationTest.java
@@ -38,9 +38,9 @@ public class UriConfigurationTest extends Assert {
         String json = compConf.createParameterJsonSchema();
         assertNotNull(json);
 
-        assertTrue(json.contains("\"awaitJob\": { \"kind\": \"parameter\", \"label\": \"consumer\", \"type\": \"boolean\""));
-        assertTrue(json.contains("\"command\": { \"kind\": \"parameter\", \"type\": \"string\""));
-        assertTrue(json.contains("\"jobTimeToRun\": { \"kind\": \"parameter\", \"type\": \"integer\""));
+        assertTrue(json.contains("\"command\": { \"kind\": \"parameter\", \"group\": \"common\", \"type\": \"string\""));
+        assertTrue(json.contains("\"jobTimeToRun\": { \"kind\": \"parameter\", \"group\": \"common\", \"type\": \"integer\""));
+        assertTrue(json.contains("\"awaitJob\": { \"kind\": \"parameter\", \"group\": \"consumer\", \"label\": \"consumer\", \"type\": \"boolean\""));
     }
 
     @Test