try to make the IT pass on Windows

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1599269 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2014-06-02 17:07:07 +00:00
parent a2602cf139
commit f36105f19c
1 changed files with 2 additions and 2 deletions

View File

@ -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();