This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new d4551f2  Fixing compilation issue
d4551f2 is described below

commit d4551f23ce0118f86c946724e138a3f53d930115
Author: reta <drr...@gmail.com>
AuthorDate: Thu Jul 23 20:27:18 2020 -0400

    Fixing compilation issue
---
 .../src/test/java/org/apache/cxf/jaxws/logging/SOAPLoggingTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/logging/SOAPLoggingTest.java
 
b/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/logging/SOAPLoggingTest.java
index aa92e1d..2c51a17 100644
--- 
a/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/logging/SOAPLoggingTest.java
+++ 
b/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/logging/SOAPLoggingTest.java
@@ -74,7 +74,7 @@ public class SOAPLoggingTest extends AbstractJaxWsTest {
         BindingOperationInfo boi = new BindingOperationInfo(info, opInfo);
         exchange.put(BindingOperationInfo.class, boi);
         message.setExchange(exchange);
-        LogEvent event = mapper.map(message);
+        LogEvent event = mapper.map(message, Collections.emptySet());
         Assert.assertEquals("{http://my}Operation";, event.getOperationName());
     }
     @Test

Reply via email to