Author: dkulp
Date: Thu Dec 12 18:47:25 2013
New Revision: 1550485
URL: http://svn.apache.org/r1550485
Log:
Fix compile failure
Modified:
cxf/branches/2.6.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java
Modified:
cxf/branches/2.6.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java?rev=1550485&r1=1550484&r2=1550485&view=diff
==============================================================================
---
cxf/branches/2.6.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java
(original)
+++
cxf/branches/2.6.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java
Thu Dec 12 18:47:25 2013
@@ -50,10 +50,10 @@ public class LocalDestinationTest extend
EndpointInfo ei = new EndpointInfo(null,
"http://schemas.xmlsoap.org/soap/http");
ei.setAddress("http://localhost/test");
- LocalDestination d = (LocalDestination) factory.getDestination(ei,
bus);
+ LocalDestination d = (LocalDestination) factory.getDestination(ei);
MessageImpl m = new MessageImpl();
- Conduit conduit = factory.getConduit(ei, bus);
+ Conduit conduit = factory.getConduit(ei);
m.put(LocalConduit.IN_CONDUIT, conduit);
Exchange ex = new ExchangeImpl();
ex.put(Bus.class, bus);
@@ -62,7 +62,7 @@ public class LocalDestinationTest extend
Integer code = (Integer)m.get(Message.RESPONSE_CODE);
assertNull(code);
- Conduit backChannel = d.getBackChannel(m);
+ Conduit backChannel = d.getBackChannel(m, null, null);
backChannel.close(m);