diff --git a/integration-tests/source/systemtest/testcase.py b/integration-tests/source/systemtest/testcase.py index df392ca0cd918396844f754655e558da59e51fbf..b47a6da62ec9d862055515d3e0595bac3cc224db 100644 --- a/integration-tests/source/systemtest/testcase.py +++ b/integration-tests/source/systemtest/testcase.py @@ -489,6 +489,10 @@ class OpenbisController(_Controller): def setDataStoreServerUsername(self, username): """ Sets the username of the Data Store Server. """ self.dssProperties['username'] = username + + def setDataStoreServerProperty(self, prop, val): + """ Can be used to set the value of any property in DSS service.properties """ + self.dssProperties[prop] = val def setAsMaxHeapSize(self, maxHeapSize): self._setMaxHeapSize("openBIS-server/jetty/etc/openbis.conf", maxHeapSize)