There was an error while loading. Please reload this page.
1 parent 7862713 commit 463bb63Copy full SHA for 463bb63
1 file changed
assay/src/org/labkey/assay/plate/PlateImpl.java
@@ -800,11 +800,11 @@ public void testFromInitializer()
800
{
801
String testContainerId = JunitUtil.getTestContainer().getId();
802
int testUserId = TestContext.get().getUser().getUserId();
803
- int plateTypeId = PlateManager.get().getPlateTypes().stream().findFirst().orElseThrow().getRowId();
804
- int plateSetId = _plateSet.getRowId();
+ Long plateTypeId = PlateManager.get().getPlateTypes().stream().findFirst().orElseThrow().getRowId();
+ Long plateSetId = _plateSet.getRowId();
805
806
PlateBean bean = new PlateBean();
807
- Integer expectedRowId = 1;
+ Long expectedRowId = 1L;
808
String expectedName = "Test Name";
809
Boolean archived = null;
810
bean.setPlateType(plateTypeId);
0 commit comments