You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2013/12/10 22:49:16 UTC

svn commit: r1549980 - /cxf/branches/2.7.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java

Author: dkulp
Date: Tue Dec 10 21:49:16 2013
New Revision: 1549980

URL: http://svn.apache.org/r1549980
Log:
Fix compile failure

Modified:
    cxf/branches/2.7.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java

Modified: cxf/branches/2.7.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java?rev=1549980&r1=1549979&r2=1549980&view=diff
==============================================================================
--- cxf/branches/2.7.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java (original)
+++ cxf/branches/2.7.x-fixes/rt/transports/local/src/test/java/org/apache/cxf/transport/local/LocalDestinationTest.java Tue Dec 10 21:49:16 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);