Skip to content

Commit

Permalink
TRUNK-6028 ignore case for h2 ConceptServiceTest
Browse files Browse the repository at this point in the history
  • Loading branch information
dkayiwa committed Sep 22, 2022
1 parent 1aae73a commit 4ed26ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ public Properties getRuntimeProperties() {
// properties
if (useInMemoryDatabase()) {
runtimeProperties.setProperty(Environment.DIALECT, H2Dialect.class.getName());
String url = "jdbc:h2:mem:openmrs;DB_CLOSE_DELAY=30;LOCK_TIMEOUT=10000";
String url = "jdbc:h2:mem:openmrs;DB_CLOSE_DELAY=30;LOCK_TIMEOUT=10000;IGNORECASE=TRUE";
runtimeProperties.setProperty(Environment.URL, url);
runtimeProperties.setProperty(Environment.DRIVER, "org.h2.Driver");
runtimeProperties.setProperty(Environment.USER, "sa");
Expand Down

0 comments on commit 4ed26ff

Please sign in to comment.