You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2014/06/02 19:07:07 UTC

svn commit: r1599269 - /maven/plugin-tools/trunk/maven-plugin-plugin/src/it/help-basic/verify.groovy

Author: hboutemy
Date: Mon Jun  2 17:07:07 2014
New Revision: 1599269

URL: http://svn.apache.org/r1599269
Log:
try to make the IT pass on Windows

Modified:
    maven/plugin-tools/trunk/maven-plugin-plugin/src/it/help-basic/verify.groovy

Modified: maven/plugin-tools/trunk/maven-plugin-plugin/src/it/help-basic/verify.groovy
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/help-basic/verify.groovy?rev=1599269&r1=1599268&r2=1599269&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/src/it/help-basic/verify.groovy (original)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/src/it/help-basic/verify.groovy Mon Jun  2 17:07:07 2014
@@ -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();