diff --git a/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest-Example.properties b/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest-Example.properties
index 8dbd53ae601507dc28e1ce2df7815a3076e7ba18..37f927d385c5d93e309544194fb1a45e3b257c9f 100644
--- a/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest-Example.properties
+++ b/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest-Example.properties
@@ -1,4 +1,4 @@
 message-template = storage_provider.storage.status = STORAGE_SUCCESSFUL\n\
                    storage_provider.dataset.id = ${data-set-code}\n\
                    ibrain2.dataset.id = ${property:ibrain-data-set-id}\n
-destination-file = targets/notifyingTask.txt
+destination-path-template = targets/ibrain-${property:ibrain-data-set-id}.txt
diff --git a/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest.java b/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest.java
index cb3c5d4334689db7ede0ad367ad2c1f2d2e10f90..e3160ee4702b3c29f2aaef01d0f0a9a3ec32e132 100644
--- a/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest.java
+++ b/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest.java
@@ -92,7 +92,7 @@ public class NotifyingTaskTest extends AbstractFileSystemTestCase
         assertEquals(NoCleanupTask.class, cleanupTask.getClass());
         assertEquals("storage_provider.storage.status = STORAGE_SUCCESSFUL\n"
                 + "storage_provider.dataset.id = ds-1\n" + "ibrain2.dataset.id = ibrain-2",
-                FileUtilities.loadExactToString(new File("targets/notifyingTask.txt")));
+                FileUtilities.loadExactToString(new File("targets/ibrain-ibrain-2.txt")));
         context.assertIsSatisfied();
     }
 }