Repository: camel Updated Branches: refs/heads/master e95b669e8 -> f43c81643
Remove unuseful print Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f43c8164 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f43c8164 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f43c8164 Branch: refs/heads/master Commit: f43c81643f88d971010a48d8681a50e88420e113 Parents: e95b669 Author: Andrea Cosentino <anco...@gmail.com> Authored: Wed Mar 9 15:34:27 2016 +0100 Committer: Andrea Cosentino <anco...@gmail.com> Committed: Wed Mar 9 15:34:27 2016 +0100 ---------------------------------------------------------------------- .../java/org/apache/camel/component/hbase/HBaseProducerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/f43c8164/components/camel-hbase/src/test/java/org/apache/camel/component/hbase/HBaseProducerTest.java ---------------------------------------------------------------------- diff --git a/components/camel-hbase/src/test/java/org/apache/camel/component/hbase/HBaseProducerTest.java b/components/camel-hbase/src/test/java/org/apache/camel/component/hbase/HBaseProducerTest.java index ba96175..e53ff37 100644 --- a/components/camel-hbase/src/test/java/org/apache/camel/component/hbase/HBaseProducerTest.java +++ b/components/camel-hbase/src/test/java/org/apache/camel/component/hbase/HBaseProducerTest.java @@ -275,7 +275,7 @@ public class HBaseProducerTest extends CamelHBaseTestSupport { Object result1 = resp.getOut().getHeader(HBaseAttribute.HBASE_VALUE.asHeader(1)); Object result2 = resp.getOut().getHeader(HBaseAttribute.HBASE_VALUE.asHeader(2)); Object result3 = resp.getOut().getHeader(HBaseAttribute.HBASE_VALUE.asHeader(3)); - System.err.println(resp.getOut().getHeaders().toString()); + List<?> bodies = Arrays.asList(body[0][0][0], body[1][0][0], body[2][0][0]); assertTrue(bodies.contains(result1) && bodies.contains(result2) && bodies.contains(result3)); }