From d4afbd796df4d44a13eb3c1df4d8dd264a0b6450 Mon Sep 17 00:00:00 2001
From: cramakri <cramakri>
Date: Tue, 10 Jul 2012 11:39:42 +0000
Subject: [PATCH] BIS-21 SP-177 : Fixed jython dropbox testing framework to
 correctly move file in the mock storage processor

SVN: 26055
---
 .../server/dropbox/JythonScreeningDropboxRecoveryTest.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/screening/server/dropbox/JythonScreeningDropboxRecoveryTest.java b/screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/screening/server/dropbox/JythonScreeningDropboxRecoveryTest.java
index 37ca0b0258b..4f689d2bf63 100644
--- a/screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/screening/server/dropbox/JythonScreeningDropboxRecoveryTest.java
+++ b/screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/screening/server/dropbox/JythonScreeningDropboxRecoveryTest.java
@@ -142,10 +142,10 @@ public class JythonScreeningDropboxRecoveryTest extends AbstractJythonDataSetHan
         assertEquals(new DataSetType("HCS_IMAGE_CONTAINER_RAW"),
                 hcsImageContainerRawDataSet.getDataSetType());
 
-        File rawDatasetLocation = assertStorageDirectoryOfDataset(hcsImageRawDataSet);
+        File rawDatasetLocation =
+                new File(assertStorageDirectoryOfDataset(hcsImageRawDataSet), "original");
         File overviewDatasetLocation = assertStorageDirectoryOfDataset(hcsImageOverviewDataSet);
 
-        System.out.println(hcsImageRawDataSet.getLocation());
         System.out.println(hcsImageOverviewDataSet.getLocation());
 
         assertTrue("The plate directory exists", new File(rawDatasetLocation, "PLATE").exists());
-- 
GitLab