Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 17972 invoked from network); 21 Feb 2011 12:17:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 21 Feb 2011 12:17:27 -0000 Received: (qmail 14719 invoked by uid 500); 21 Feb 2011 12:17:27 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 14594 invoked by uid 500); 21 Feb 2011 12:17:24 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 14586 invoked by uid 99); 21 Feb 2011 12:17:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Feb 2011 12:17:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Feb 2011 12:17:21 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8A2992388A41; Mon, 21 Feb 2011 12:17:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1072943 - /cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/frontend/spring/ClientServerTest.java Date: Mon, 21 Feb 2011 12:17:00 -0000 To: commits@cxf.apache.org From: cschneider@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110221121700.8A2992388A41@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cschneider Date: Mon Feb 21 12:17:00 2011 New Revision: 1072943 URL: http://svn.apache.org/viewvc?rev=1072943&view=rev Log: Small fix for unit test Modified: cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/frontend/spring/ClientServerTest.java Modified: cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/frontend/spring/ClientServerTest.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/frontend/spring/ClientServerTest.java?rev=1072943&r1=1072942&r2=1072943&view=diff ============================================================================== --- cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/frontend/spring/ClientServerTest.java (original) +++ cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/frontend/spring/ClientServerTest.java Mon Feb 21 12:17:00 2011 @@ -47,7 +47,7 @@ public class ClientServerTest extends Ab assertNotNull(greeter); String result = greeter.sayHello(); - assertEquals("We get the wrong sayHello result", result, "hello"); + assertEquals("We get the wrong sayHello result", "hello", result); Client c = ClientProxy.getClient(greeter);