Skip to content

Commit 0f27485

Browse files
Account for the AssayID column being present.
1 parent cef8eaf commit 0f27485

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/org/labkey/test/tests/InlineImagesAssayTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public final void testAssayInlineImages() throws Exception
207207
log("Validate that the 'File' (last) column is as expected.");
208208
assertEquals("Values in 'File' column not exported as expected [" + exportedFile.getName() + "]",
209209
Arrays.asList("Batch File Field", "assaydata" + File.separator + XLS_FILE.getName(), "assaydata" + File.separator + XLS_FILE.getName(), "assaydata" + File.separator + XLS_FILE.getName()),
210-
ExcelHelper.getColumnData(workbook.getSheetAt(workbook.getActiveSheetIndex()), 7));
210+
ExcelHelper.getColumnData(workbook.getSheetAt(workbook.getActiveSheetIndex()), 8));
211211
}
212212

213213
log("Remove the 'File' (last) column from the batch and see that things still work.");

src/org/labkey/test/tests/TextChoiceTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ protected void verifyRunResultsTable(Map<String, String> expectedRowData, String
248248

249249
Map<String, String> expectedData = Map.of(RESULT_SAMPLE_FIELD, entry.getKey(),
250250
RESULT_TC_FIELD, entry.getValue(),
251+
"Run/Name", ASSAY_RUN_ID,
251252
String.format("Run/Batch/%s", BATCH_TC_FIELD), BATCH_VALUE,
252253
String.format("Run/%s", RUN_TC_FIELD), expectedRunValue);
253254

0 commit comments

Comments
 (0)