diff --git a/screening/sourceTest/java/ch/systemsx/cisd/openbis/screening/systemtests/FeatureVectorsDropboxTest.java b/screening/sourceTest/java/ch/systemsx/cisd/openbis/screening/systemtests/FeatureVectorsDropboxTest.java index f7cc1a1bba2541354c20f4a4e8b9ba626161f494..63ca230492536ebd45535ab3a2518fa9bbde90b6 100644 --- a/screening/sourceTest/java/ch/systemsx/cisd/openbis/screening/systemtests/FeatureVectorsDropboxTest.java +++ b/screening/sourceTest/java/ch/systemsx/cisd/openbis/screening/systemtests/FeatureVectorsDropboxTest.java @@ -18,6 +18,7 @@ package ch.systemsx.cisd.openbis.screening.systemtests; import java.io.File; import java.io.IOException; +import java.util.ArrayList; import java.util.List; import org.apache.commons.io.FileUtils; @@ -93,7 +94,7 @@ public class FeatureVectorsDropboxTest extends AbstractScreeningSystemTestCase List<Plate> plates = screeningFacade.listPlates(); List<FeatureVectorDatasetReference> features = - screeningFacade.listFeatureVectorDatasets(plates); + screeningFacade.listFeatureVectorDatasets(filterPlates(plates)); // exactly one feature vector data set should be created in this test assertEquals(1, features.size()); @@ -102,6 +103,19 @@ public class FeatureVectorsDropboxTest extends AbstractScreeningSystemTestCase assertEquals("HCS_ANALYSIS_CONTAINER_WELL_FEATURES", feature.getDataSetType()); } + + private List<Plate> filterPlates(List<Plate> plates) + { + List<Plate> filteredPlates = new ArrayList<Plate>(); + for (Plate plate : plates) + { + if (plate.getPlateCode().equals("PLATE-FEATURE-VECTOR-TEST")) + { + filteredPlates.add(plate); + } + } + return filteredPlates; + } private File createTestDataContents() throws IOException {