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/02/12 00:54:34 UTC

[maven-surefire] branch maven2surefire-jvm-communication updated: fixed compilation error

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

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


The following commit(s) were added to refs/heads/maven2surefire-jvm-communication by this push:
     new 518f30f  fixed compilation error
518f30f is described below

commit 518f30fda5ebaeeb69b00f58f8cbe526b6ae9a9a
Author: tibordigana <ti...@apache.org>
AuthorDate: Wed Feb 12 01:54:24 2020 +0100

    fixed compilation error
---
 .../plugin/surefire/booterclient/output/ForkedChannelDecoderTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maven-surefire-common/src/test/java/org/apache/maven/plugin/surefire/booterclient/output/ForkedChannelDecoderTest.java b/maven-surefire-common/src/test/java/org/apache/maven/plugin/surefire/booterclient/output/ForkedChannelDecoderTest.java
index ef28350..cd1473d 100644
--- a/maven-surefire-common/src/test/java/org/apache/maven/plugin/surefire/booterclient/output/ForkedChannelDecoderTest.java
+++ b/maven-surefire-common/src/test/java/org/apache/maven/plugin/surefire/booterclient/output/ForkedChannelDecoderTest.java
@@ -320,7 +320,7 @@ public class ForkedChannelDecoderTest
             when( reportEntry.getStackTraceWriter() ).thenReturn( stackTraceWriter );
 
             Stream out = Stream.newStream();
-            ForkedChannelEncoder forkedChannelEncoder = new ForkedChannelEncoder( out );
+            LegacyMasterProcessChannelEncoder forkedChannelEncoder = new LegacyMasterProcessChannelEncoder( out );
             forkedChannelEncoder.testFailed( reportEntry, true );
             String line = new String( out.toByteArray(), UTF_8 );