You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by cs...@apache.org on 2011/02/21 13:17:00 UTC

svn commit: r1072943 - /cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/frontend/spring/ClientServerTest.java

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);