Skip to content

Commit c17a78f

Browse files
committed
[MPIR-441] Fix DependenciesReportTest
This closes #62
1 parent 2640c07 commit c17a78f

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

pom.xml

-9
Original file line numberDiff line numberDiff line change
@@ -498,15 +498,6 @@ under the License.
498498
</plugins>
499499
</pluginManagement>
500500
<plugins>
501-
<plugin>
502-
<artifactId>maven-surefire-plugin</artifactId>
503-
<configuration>
504-
<excludes>
505-
<exclude>**/DependenciesReportTest*</exclude>
506-
<!-- FIXME: missing Maven 3 class or conflict -->
507-
</excludes>
508-
</configuration>
509-
</plugin>
510501
<!-- To use Jetty SSL in tests -->
511502
<plugin>
512503
<groupId>org.codehaus.mojo</groupId>

src/test/java/org/apache/maven/report/projectinfo/DependenciesReportTest.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ public void testReport() throws Exception {
6565

6666
// Test the tables
6767
WebTable[] webTables = response.getTables();
68-
assertEquals(webTables.length, 1);
68+
// One table with listing and one table per artifact popup
69+
assertEquals(webTables.length, 3);
6970

7071
assertEquals(webTables[0].getColumnCount(), 5);
7172
assertEquals(

0 commit comments

Comments
 (0)