Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LDK/src/org/labkey/ldk/LDKModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public static boolean isSqlServer()
}

@Override
public @NotNull Set<Class> getIntegrationTests()
public @NotNull Set<Class<?>> getIntegrationTests()
{
return PageFlowUtil.set(LookupSetTable.TestCase.class);
}
Expand Down
2 changes: 1 addition & 1 deletion laboratory/src/org/labkey/laboratory/LaboratoryModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public UpgradeCode getUpgradeCode()
}

@Override
public @NotNull Set<Class> getIntegrationTests()
public @NotNull Set<Class<?>> getIntegrationTests()
{
return PageFlowUtil.set(WorkbookTestCase.class);
}
Expand Down