You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2015/04/26 10:52:38 UTC

camel git commit: Fix Camel-Beanstalk UriConfigurationTest

Repository: camel
Updated Branches:
  refs/heads/master 5becebd30 -> d1be10d7f


Fix Camel-Beanstalk UriConfigurationTest


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

Branch: refs/heads/master
Commit: d1be10d7f2ba39f3b85f9174124cc171e83a7c06
Parents: 5becebd
Author: ancosen <an...@gmail.com>
Authored: Sun Apr 26 10:50:38 2015 +0200
Committer: ancosen <an...@gmail.com>
Committed: Sun Apr 26 10:50:38 2015 +0200

----------------------------------------------------------------------
 .../org/apache/camel/component/beanstalk/UriConfigurationTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/d1be10d7/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 10dfc9d..998c112 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,7 +38,7 @@ public class UriConfigurationTest extends Assert {
         String json = compConf.createParameterJsonSchema();
         assertNotNull(json);
 
-        assertTrue(json.contains("\"awaitJob\": { \"kind\": \"parameter\", \"type\": \"boolean\""));
+        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\""));
     }