[hibernate-commits] Hibernate SVN: r10605 - branches/Branch_3_2/Hibernate3/test/org/hibernate/test

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Oct 18 08:33:29 EDT 2006


Author: steve.ebersole at jboss.com
Date: 2006-10-18 08:33:29 -0400 (Wed, 18 Oct 2006)
New Revision: 10605

Modified:
   branches/Branch_3_2/Hibernate3/test/org/hibernate/test/TestCase.java
Log:
disable test data cleanup validation by default

Modified: branches/Branch_3_2/Hibernate3/test/org/hibernate/test/TestCase.java
===================================================================
--- branches/Branch_3_2/Hibernate3/test/org/hibernate/test/TestCase.java	2006-10-18 12:33:12 UTC (rev 10604)
+++ branches/Branch_3_2/Hibernate3/test/org/hibernate/test/TestCase.java	2006-10-18 12:33:29 UTC (rev 10605)
@@ -321,7 +321,7 @@
 		if ( !recreateSchema() ) {
 			return; // no tables were created...
 		}
-		if ( Boolean.getBoolean( "hibernate.test.skipCleanupValidation" ) ) {
+		if ( !Boolean.getBoolean( "hibernate.test.validateDataCleanup" ) ) {
 			return;
 		}
 




More information about the hibernate-commits mailing list