Skip to content
Closed
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
4 changes: 2 additions & 2 deletions ms2/test/src/org/labkey/test/tests/ms2/MascotTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public void testDatImport()

// really 466 peptides in the .dat import, but only first 100 show in default view
assertEquals("Wrong number of peptides found", 100, peptidesTable.getDataRowCount());
List<String> peptideRow = peptidesTable.getRowDataAsText(0);
List<String> peptideRow = new ArrayList<>(peptidesTable.getRowDataAsText(0));
List<String> expectedPeptideRow = new ArrayList<>(Arrays.asList(
"4", // Scan
"3+", // Z
Expand Down Expand Up @@ -315,7 +315,7 @@ public void testDatImportWithDecoys()
peptidesTable = new DataRegionTable(REGION_NAME_PEPTIDES, this);

assertEquals("Wrong number of peptides found", 67, peptidesTable.getDataRowCount());
List<String> peptideRow = peptidesTable.getRowDataAsText(0);
List<String> peptideRow = new ArrayList<>(peptidesTable.getRowDataAsText(0));
List<String> expectedPeptideRow = new ArrayList<>(Arrays.asList(
"20", // Scan
"1+", // Z
Expand Down
Loading