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

reta pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit 466bfbdaca8b274233f745603980e37e7a288d96
Author: Andriy Redko <[email protected]>
AuthorDate: Thu Aug 22 21:07:41 2024 -0400

    Attempt to troubleshoot 
org.apache.cxf.ws.discovery.WSDiscoveryClientTest.testMultiResponses
    
    (cherry picked from commit 7334657f2c1997dd207f86eb8628c460609a036e)
    (cherry picked from commit 2ed67492cfaa64650b655b1c556d9f050564d7cb)
---
 .../test/java/org/apache/cxf/ws/discovery/WSDiscoveryClientTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/services/ws-discovery/ws-discovery-api/src/test/java/org/apache/cxf/ws/discovery/WSDiscoveryClientTest.java
 
b/services/ws-discovery/ws-discovery-api/src/test/java/org/apache/cxf/ws/discovery/WSDiscoveryClientTest.java
index ea7245caf0..cff0eaccad 100644
--- 
a/services/ws-discovery/ws-discovery-api/src/test/java/org/apache/cxf/ws/discovery/WSDiscoveryClientTest.java
+++ 
b/services/ws-discovery/ws-discovery-api/src/test/java/org/apache/cxf/ws/discovery/WSDiscoveryClientTest.java
@@ -81,8 +81,8 @@ public final class WSDiscoveryClientTest {
             }
         }
         for (NetworkInterface p : possibles) {
-            if (p.isPointToPoint()) {
-                System.out.println("Using p2p network interface:" + 
p.getDisplayName());
+            if (!p.isPointToPoint()) {
+                System.out.println("Using non-p2p network interface:" + 
p.getDisplayName());
                 return p;
             }
         }

Reply via email to