Skip to content

Commit

Permalink
[MPIR-441] Fix DependenciesReportTest
Browse files Browse the repository at this point in the history
This closes #62
  • Loading branch information
michael-o committed Jun 2, 2023
1 parent 2640c07 commit c17a78f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
9 changes: 0 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -498,15 +498,6 @@ under the License.
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/DependenciesReportTest*</exclude>
<!-- FIXME: missing Maven 3 class or conflict -->
</excludes>
</configuration>
</plugin>
<!-- To use Jetty SSL in tests -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ public void testReport() throws Exception {

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

assertEquals(webTables[0].getColumnCount(), 5);
assertEquals(
Expand Down

0 comments on commit c17a78f

Please sign in to comment.