mirror of
https://github.com/apache/archiva.git
synced 2025-02-21 09:24:54 +00:00
replaced usage of FileUtils.contentEquals() to private method compareFiles()
git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@380034 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cbd3b3958d
commit
28d269cb00
@ -208,13 +208,13 @@ public void testV3PomConvertWithRelocation()
|
||||
Artifact pomArtifact = createArtifact( "relocated-test", "relocated-v3artifact", "1.0.0", "1.0.0", "pom" );
|
||||
File pomFile = getTestFile( "src/test/expected-files/" + targetRepository.pathOf( pomArtifact ) );
|
||||
File testFile = getTestFile( "target/test-target-repository/" + targetRepository.pathOf( pomArtifact ) );
|
||||
assertTrue( "Check if expected relocated pom matches", FileUtils.contentEquals( pomFile, testFile ) );
|
||||
compareFiles( pomFile, testFile );
|
||||
|
||||
Artifact orig = createArtifact( "test", "relocated-v3artifact", "1.0.0", "1.0.0", "pom" );
|
||||
artifactFile = new File( targetRepository.getBasedir(), targetRepository.pathOf( orig ) );
|
||||
assertTrue( "Check if relocation artifact pom is created", artifactFile.exists() );
|
||||
testFile = getTestFile( "src/test/expected-files/" + targetRepository.pathOf( orig ) );
|
||||
assertTrue( "Check if expected artifact matches", FileUtils.contentEquals( artifactFile, testFile ) );
|
||||
compareFiles( artifactFile, testFile );
|
||||
}
|
||||
|
||||
public void testV3PomWarningsOnConvert()
|
||||
|
Loading…
x
Reference in New Issue
Block a user