ignore xml header altogether

git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@380033 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2006-02-23 03:20:23 +00:00
parent d40c649157
commit cbd3b3958d
1 changed files with 1 additions and 1 deletions

View File

@ -880,7 +880,7 @@ public class RepositoryConverterTest
private static String normalizeString( String path )
{
return path.trim().replaceAll( "\r\n", "\n" ).replace( '\r', '\n' );
return path.trim().replaceAll( "\r\n", "\n" ).replace( '\r', '\n' ).replaceAll( "<\\?xml .+\\?>", "" );
}
private void checkSuccess()