Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,10 @@ public void testCreationOfAppWithWrongDbSettingsAndLaterUpdateIt() throws Except
return;
}

if (StorageLayer.isInMemDb(process.getProcess())) {
return;
}

JsonObject coreConfig = new JsonObject();

StorageLayer.getStorage(new TenantIdentifier(null, null, null), process.getProcess())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,10 @@ public void testDifferentValuesForCUDThatShouldWork() throws Exception {
return;
}

if (StorageLayer.isInMemDb(process.getProcess())) {
return;
}

JsonObject config = new JsonObject();
StorageLayer.getBaseStorage(process.getProcess()).modifyConfigToAddANewUserPoolForTesting(config, 1);

Expand Down Expand Up @@ -410,6 +414,10 @@ public void testCUDsThatAreSame() throws Exception {
return;
}

if (StorageLayer.isInMemDb(process.getProcess())) {
return;
}

JsonObject config = new JsonObject();
StorageLayer.getBaseStorage(process.getProcess()).modifyConfigToAddANewUserPoolForTesting(config, 1);

Expand Down