From 61ce1718efcc2bd5a59a31d3e75a324feb27b54a Mon Sep 17 00:00:00 2001 From: Adam Rauch Date: Thu, 2 Oct 2025 13:50:42 -0700 Subject: [PATCH 1/2] Return Set> from Module "get test" methods --- laboratory/src/org/labkey/laboratory/LaboratoryModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laboratory/src/org/labkey/laboratory/LaboratoryModule.java b/laboratory/src/org/labkey/laboratory/LaboratoryModule.java index 6cb8a7d8..4a462b16 100644 --- a/laboratory/src/org/labkey/laboratory/LaboratoryModule.java +++ b/laboratory/src/org/labkey/laboratory/LaboratoryModule.java @@ -235,7 +235,7 @@ public UpgradeCode getUpgradeCode() } @Override - public @NotNull Set getIntegrationTests() + public @NotNull Set> getIntegrationTests() { return PageFlowUtil.set(WorkbookTestCase.class); } From 9c741a72bed43a01bf68505ee1e1f3d0a9a3cf38 Mon Sep 17 00:00:00 2001 From: Adam Rauch Date: Fri, 3 Oct 2025 09:37:40 -0700 Subject: [PATCH 2/2] Fix build breaks --- LDK/src/org/labkey/ldk/LDKModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LDK/src/org/labkey/ldk/LDKModule.java b/LDK/src/org/labkey/ldk/LDKModule.java index 78b1a83b..ddbccaf2 100644 --- a/LDK/src/org/labkey/ldk/LDKModule.java +++ b/LDK/src/org/labkey/ldk/LDKModule.java @@ -150,7 +150,7 @@ public static boolean isSqlServer() } @Override - public @NotNull Set getIntegrationTests() + public @NotNull Set> getIntegrationTests() { return PageFlowUtil.set(LookupSetTable.TestCase.class); }