Tibor17 commented on a change in pull request #300: URL: https://github.com/apache/maven-surefire/pull/300#discussion_r436304484
########## File path: maven-surefire-common/src/test/java/org/apache/maven/surefire/extensions/ForkChannelTest.java ########## @@ -162,17 +172,20 @@ public void handleEvent( @Nonnull Event s ) private final class Client extends Thread { private final int port; + private final String sessionId; - private Client( int port ) + private Client( int port, String sessionId ) { this.port = port; + this.sessionId = sessionId; } @Override public void run() { try ( Socket socket = new Socket( "127.0.0.1", port ) ) Review comment: Not in master. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org