Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D060A200B75 for ; Sat, 20 Aug 2016 11:30:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id CF214160AAA; Sat, 20 Aug 2016 09:30:41 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 26F64160ABE for ; Sat, 20 Aug 2016 11:30:40 +0200 (CEST) Received: (qmail 16273 invoked by uid 500); 20 Aug 2016 09:30:40 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 16166 invoked by uid 99); 20 Aug 2016 09:30:40 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Aug 2016 09:30:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0B26FE098D; Sat, 20 Aug 2016 09:30:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Sat, 20 Aug 2016 09:30:42 -0000 Message-Id: In-Reply-To: <3e6bd37fedc5482ebf006d7d5f15d351@git.apache.org> References: <3e6bd37fedc5482ebf006d7d5f15d351@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/4] camel git commit: Fixed test archived-at: Sat, 20 Aug 2016 09:30:42 -0000 Fixed test Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/9d0c6614 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/9d0c6614 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/9d0c6614 Branch: refs/heads/master Commit: 9d0c661438cf378aeca527f48dad59187b551e19 Parents: c8ca2d3 Author: Claus Ibsen Authored: Sat Aug 20 11:25:08 2016 +0200 Committer: Claus Ibsen Committed: Sat Aug 20 11:25:08 2016 +0200 ---------------------------------------------------------------------- .../apache/camel/dataformat/xstream/XStreamConfigurationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/9d0c6614/components/camel-xstream/src/test/java/org/apache/camel/dataformat/xstream/XStreamConfigurationTest.java ---------------------------------------------------------------------- diff --git a/components/camel-xstream/src/test/java/org/apache/camel/dataformat/xstream/XStreamConfigurationTest.java b/components/camel-xstream/src/test/java/org/apache/camel/dataformat/xstream/XStreamConfigurationTest.java index 5fc8858..c56ec8f 100644 --- a/components/camel-xstream/src/test/java/org/apache/camel/dataformat/xstream/XStreamConfigurationTest.java +++ b/components/camel-xstream/src/test/java/org/apache/camel/dataformat/xstream/XStreamConfigurationTest.java @@ -104,7 +104,7 @@ public class XStreamConfigurationTest extends CamelTestSupport { order.setAmount(1); order.setPrice(99.95); - String ordereString = "{\"purchase-order\":{\"@name\":\"Tiger\",\"@price\":\"99.95\",\"@amount\":\"1.0\"}}"; + String ordereString = "{\"purchase-order\":{\"@name\":\"Tiger\",\"@price\":99.95,\"@amount\":1}}"; mock.expectedBodiesReceived(new Object[] {ordereString, order}); template.sendBody("direct:marshal-json", order);