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:11 UTC

[02/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/93af7706
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/93af7706
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/93af7706

Branch: refs/heads/master
Commit: 93af770609f46be0f8eb064020424c0f14fb012d
Parents: 6cd6231
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 07:23:39 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/93af7706/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