Author: dkulp
Date: Tue Oct 25 21:03:49 2011
New Revision: 1188909
URL: http://svn.apache.org/viewvc?rev=1188909&view=rev
Log:
Merged revisions 1188893 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r1188893 | dkulp | 2011-10-25 16:30:03 -0400 (Tue, 25 Oct 2011) | 1 line
Get the test off port 8080
........
Modified:
cxf/branches/2.4.x-fixes/ (props changed)
cxf/branches/2.4.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
Propchange: cxf/branches/2.4.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.4.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java?rev=1188909&r1=1188908&r2=1188909&view=diff
==============================================================================
---
cxf/branches/2.4.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
(original)
+++
cxf/branches/2.4.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
Tue Oct 25 21:03:49 2011
@@ -66,6 +66,7 @@ import org.junit.Test;
public class JAXRSClientServerBookTest extends AbstractBusClientServerTestBase
{
public static final String PORT = BookServer.PORT;
+ public static final String PORT2 =
allocatePort(JAXRSClientServerBookTest.class);
@BeforeClass
public static void startServers() throws Exception {
@@ -84,7 +85,7 @@ public class JAXRSClientServerBookTest e
@Test
public void testProxyWrongAddress() throws Exception {
- BookStore store =
JAXRSClientFactory.create("http://localhost:8080/wrongaddress",
+ BookStore store = JAXRSClientFactory.create("http://localhost:" +
PORT2 + "/wrongaddress",
BookStore.class);
try {
store.getBook("123");