Author: dkulp Date: Tue Sep 11 18:54:22 2012 New Revision: 1383547 URL: http://svn.apache.org/viewvc?rev=1383547&view=rev Log: Merged revisions 1383526 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes
........ r1383526 | dkulp | 2012-09-11 14:39:07 -0400 (Tue, 11 Sep 2012) | 10 lines Merged revisions 1382092 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/trunk ........ r1382092 | dkulp | 2012-09-07 12:56:32 -0400 (Fri, 07 Sep 2012) | 2 lines Make a few calls so I can wireshark to make sure a single connection is used ........ ........ Modified: cxf/branches/2.5.x-fixes/systests/transports/src/test/java/org/apache/cxf/systest/http/HTTPConduitTest.java Modified: cxf/branches/2.5.x-fixes/systests/transports/src/test/java/org/apache/cxf/systest/http/HTTPConduitTest.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/systests/transports/src/test/java/org/apache/cxf/systest/http/HTTPConduitTest.java?rev=1383547&r1=1383546&r2=1383547&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/systests/transports/src/test/java/org/apache/cxf/systest/http/HTTPConduitTest.java (original) +++ cxf/branches/2.5.x-fixes/systests/transports/src/test/java/org/apache/cxf/systest/http/HTTPConduitTest.java Tue Sep 11 18:54:22 2012 @@ -316,6 +316,8 @@ public class HTTPConduitTest extends Abs Greeter mortimer = getMortimerGreeter(); String answer = mortimer.sayHi(); + answer = mortimer.sayHi(); + answer = mortimer.sayHi(); assertTrue("Unexpected answer: " + answer, "Bonjour from Mortimer".equals(answer)); assertProxyRequestCount(1);
