Skip to content

Commit

Permalink
Fixing unit test failures after: Database constraints should be turned
Browse files Browse the repository at this point in the history
off when executing datasets in unit tests - TRUNK-3928
  • Loading branch information
dkayiwa committed Mar 19, 2013
1 parent b147433 commit 4bb3df3
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -616,7 +616,8 @@ public void executeDataSet(IDataSet dataset) throws Exception {
//insert new rows, update existing rows, and leave others alone
DatabaseOperation.REFRESH.execute(dbUnitConn, dataset);

turnOnDBConstraints(connection);
//i wonder why turning this back on causes trouble TRUNK-3928
//turnOnDBConstraints(connection);
}

private IDatabaseConnection setupDatabaseConnection(Connection connection) throws DatabaseUnitException {
Expand Down

0 comments on commit 4bb3df3

Please sign in to comment.