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 src/org/labkey/test/tests/InlineImagesAssayTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public final void testAssayInlineImages() throws Exception
log("Validate that the 'File' (last) column is as expected.");
assertEquals("Values in 'File' column not exported as expected [" + exportedFile.getName() + "]",
Arrays.asList("Batch File Field", "assaydata" + File.separator + XLS_FILE.getName(), "assaydata" + File.separator + XLS_FILE.getName(), "assaydata" + File.separator + XLS_FILE.getName()),
ExcelHelper.getColumnData(workbook.getSheetAt(workbook.getActiveSheetIndex()), 7));
ExcelHelper.getColumnData(workbook.getSheetAt(workbook.getActiveSheetIndex()), 8));
}

log("Remove the 'File' (last) column from the batch and see that things still work.");
Expand Down
1 change: 1 addition & 0 deletions src/org/labkey/test/tests/TextChoiceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ protected void verifyRunResultsTable(Map<String, String> expectedRowData, String

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

Expand Down