Skip to content

Commit 3bfbc1f

Browse files
authored
#290 - Fix collisions between unit tests (#291)
1 parent 4680b3f commit 3bfbc1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/src/test/java/org/openmrs/module/initializer/liquibase/DeleteDomainChecksumsChangesetIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ private Liquibase getLiquibase(String filename) throws Exception {
5858
Database liquibaseConnection = DatabaseFactory.getInstance()
5959
.findCorrectDatabaseImplementation(new JdbcConnection(getConnection()));
6060

61-
liquibaseConnection.setDatabaseChangeLogTableName("LIQUIBASECHANGELOG");
62-
liquibaseConnection.setDatabaseChangeLogLockTableName("LIQUIBASECHANGELOGLOCK");
61+
liquibaseConnection.setDatabaseChangeLogTableName("LIQUIBASECHANGELOG_1");
62+
liquibaseConnection.setDatabaseChangeLogLockTableName("LIQUIBASECHANGELOGLOCK_1");
6363

6464
return new Liquibase(filename, new ClassLoaderResourceAccessor(getClass().getClassLoader()), liquibaseConnection);
6565
}

0 commit comments

Comments
 (0)