o Removed duplicate test

git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@772946 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-05-08 11:34:47 +00:00
parent a73c5abc9c
commit cb247842f6
2 changed files with 0 additions and 26 deletions

View File

@ -176,13 +176,6 @@ public class PomConstructionTest
}
*/
/*MNG-3803*/
public void testDependenciesWithDifferentVersions()
throws Exception
{
PomTestWrapper pom = buildPom( "dependencies-with-different-versions" );
assertEquals( 1, ( (List<?>) pom.getValue( "dependencies" ) ).size() );
}
/* MNG-3567*/
public void testParentInterpolation()

View File

@ -1,19 +0,0 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>a</groupId>
<artifactId>b</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.1</version>
</dependency>
</dependencies>
</project>