Skip to content

Commit 463bb63

Browse files
Fix build break. In the new test PlateImpl.testFromInitializer convert int to long.
1 parent 7862713 commit 463bb63

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

assay/src/org/labkey/assay/plate/PlateImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -800,11 +800,11 @@ public void testFromInitializer()
800800
{
801801
String testContainerId = JunitUtil.getTestContainer().getId();
802802
int testUserId = TestContext.get().getUser().getUserId();
803-
int plateTypeId = PlateManager.get().getPlateTypes().stream().findFirst().orElseThrow().getRowId();
804-
int plateSetId = _plateSet.getRowId();
803+
Long plateTypeId = PlateManager.get().getPlateTypes().stream().findFirst().orElseThrow().getRowId();
804+
Long plateSetId = _plateSet.getRowId();
805805

806806
PlateBean bean = new PlateBean();
807-
Integer expectedRowId = 1;
807+
Long expectedRowId = 1L;
808808
String expectedName = "Test Name";
809809
Boolean archived = null;
810810
bean.setPlateType(plateTypeId);

0 commit comments

Comments
 (0)