Skip to content
Snippets Groups Projects
Commit dd4126d9 authored by anttil's avatar anttil
Browse files

SSDM-555: fix cleandb tests

SVN: 32026
parent f4afc3c4
No related branches found
No related tags found
No related merge requests found
...@@ -72,8 +72,6 @@ public final class ColumnNames ...@@ -72,8 +72,6 @@ public final class ColumnNames
public static final String DATA_STORE_SERVICES_DATASET_TYPES_PARENT_COLUMN = public static final String DATA_STORE_SERVICES_DATASET_TYPES_PARENT_COLUMN =
"DATA_STORE_SERVICE_ID"; "DATA_STORE_SERVICE_ID";
public final static String DATABASE_INSTANCE_COLUMN = "dbin_id";
public static final String QUERY_DATABASE_KEY_COLUMN = "db_key"; public static final String QUERY_DATABASE_KEY_COLUMN = "db_key";
public static final String QUERY_ENTITY_TYPE_CODE_COLUMN = "entity_type_code"; public static final String QUERY_ENTITY_TYPE_CODE_COLUMN = "entity_type_code";
......
...@@ -16,6 +16,8 @@ ...@@ -16,6 +16,8 @@
package ch.systemsx.cisd.openbis.systemtest.base; package ch.systemsx.cisd.openbis.systemtest.base;
import java.util.UUID;
import org.hamcrest.Matcher; import org.hamcrest.Matcher;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.support.GenericApplicationContext; import org.springframework.context.support.GenericApplicationContext;
...@@ -151,6 +153,7 @@ public abstract class BaseTest extends AbstractTransactionalTestNGSpringContextT ...@@ -151,6 +153,7 @@ public abstract class BaseTest extends AbstractTransactionalTestNGSpringContextT
{ {
DataStorePE dataStore = new DataStorePE(); DataStorePE dataStore = new DataStorePE();
dataStore.setCode("STANDARD"); dataStore.setCode("STANDARD");
dataStore.setDatabaseInstanceUUID(UUID.randomUUID().toString());
dataStore.setDownloadUrl("http://localhost"); dataStore.setDownloadUrl("http://localhost");
dataStore.setRemoteUrl("http://remotehost"); dataStore.setRemoteUrl("http://remotehost");
dataStore.setSessionToken(""); dataStore.setSessionToken("");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment