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 DACA3200D57 for ; Mon, 11 Dec 2017 08:47:27 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id D9392160C13; Mon, 11 Dec 2017 07:47:27 +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 2B195160C10 for ; Mon, 11 Dec 2017 08:47:27 +0100 (CET) Received: (qmail 65600 invoked by uid 500); 11 Dec 2017 07:47:26 -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 65591 invoked by uid 99); 11 Dec 2017 07:47:25 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Dec 2017 07:47:25 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 75DE181FA0; Mon, 11 Dec 2017 07:47:24 +0000 (UTC) Date: Mon, 11 Dec 2017 07:47:23 +0000 To: "commits@camel.apache.org" Subject: [camel] branch master updated: Fixed FileConsumeTemplateTest MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <151297844380.6774.13022769633916153785@gitbox.apache.org> From: acosentino@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: camel X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: ee4e3f0733fd385f9b5767374edb092cc48609b8 X-Git-Newrev: 6e5bd64647ba5787b53cf4318a6f69bfd216562f X-Git-Rev: 6e5bd64647ba5787b53cf4318a6f69bfd216562f X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated archived-at: Mon, 11 Dec 2017 07:47:28 -0000 This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git The following commit(s) were added to refs/heads/master by this push: new 6e5bd64 Fixed FileConsumeTemplateTest 6e5bd64 is described below commit 6e5bd64647ba5787b53cf4318a6f69bfd216562f Author: Andrea Cosentino AuthorDate: Mon Dec 11 08:46:21 2017 +0100 Fixed FileConsumeTemplateTest --- .../org/apache/camel/component/file/FileConsumeTemplateTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeTemplateTest.java b/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeTemplateTest.java index 07b1373..a7f9859 100644 --- a/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeTemplateTest.java +++ b/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeTemplateTest.java @@ -43,8 +43,8 @@ public class FileConsumeTemplateTest extends ContextTestSupport { String body = out.getIn().getBody(String.class); String body2 = out2.getIn().getBody(String.class); - assertEquals("Bye World", body); - assertEquals("Hello World", body2); + assertEquals("Hello World", body); + assertEquals("Bye World", body2); } -} \ No newline at end of file +} -- To stop receiving notification emails like this one, please contact ['"commits@camel.apache.org" '].