You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2020/06/12 22:16:27 UTC

[maven-surefire] branch macos updated: p2p

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

tibordigana pushed a commit to branch macos
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/macos by this push:
     new a3dc950  p2p
a3dc950 is described below

commit a3dc95074a66a94310181a74f2229f7be5eec03b
Author: tibordigana <ti...@apache.org>
AuthorDate: Sat Jun 13 00:16:17 2020 +0200

    p2p
---
 .../apache/maven/plugin/surefire/log/api/ConsoleLoggerUtilsTest.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/surefire-logger-api/src/test/java/org/apache/maven/plugin/surefire/log/api/ConsoleLoggerUtilsTest.java b/surefire-logger-api/src/test/java/org/apache/maven/plugin/surefire/log/api/ConsoleLoggerUtilsTest.java
index 47a6c91..310edc7 100644
--- a/surefire-logger-api/src/test/java/org/apache/maven/plugin/surefire/log/api/ConsoleLoggerUtilsTest.java
+++ b/surefire-logger-api/src/test/java/org/apache/maven/plugin/surefire/log/api/ConsoleLoggerUtilsTest.java
@@ -52,7 +52,8 @@ public class ConsoleLoggerUtilsTest
                 continue;
             }
             System.out.println( "NetworkInterface: " + net.toString() + ", addresses=" + net.getInetAddresses()
-                + ", up=" + net.isUp() + ", virtual=" + net.isVirtual() + ", loopback=" + net.isLoopback() );
+                + ", up=" + net.isUp() + ", virtual=" + net.isVirtual() + ", loopback=" + net.isLoopback()
+                + ", point2point=" + net.isPointToPoint() );
             System.out.println( "InetAddresses:" );
             for ( Enumeration<InetAddress> inets = net.getInetAddresses(); inets.hasMoreElements();  )
             {