mirror of https://github.com/apache/archiva.git
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:
parent
d40c649157
commit
cbd3b3958d
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue