diff --git a/maven-plugin-plugin/src/it/help-basic/verify.groovy b/maven-plugin-plugin/src/it/help-basic/verify.groovy index 9808379..eb4ad85 100644 --- a/maven-plugin-plugin/src/it/help-basic/verify.groovy +++ b/maven-plugin-plugin/src/it/help-basic/verify.groovy @@ -17,9 +17,9 @@ * under the License. */ -expected = new File( basedir, "expected-help.txt" ).text.trim(); +expected = new File( basedir, "expected-help.txt" ).text.trim().replace( "\r", "" ); -log = new File( basedir, "help.log" ).text; +log = new File( basedir, "help.log" ).text.replace( "\r", "" ); log = log.substring( log.indexOf( "[INFO] help 1.0-SNAPSHOT" ) ); log = log.substring( 0, log.indexOf( "[INFO]", 5 ) ).trim();