From: <hib...@li...> - 2006-05-19 14:33:43
|
Author: max...@jb... Date: 2006-05-19 10:33:37 -0400 (Fri, 19 May 2006) New Revision: 9936 Modified: trunk/HibernateExt/tools/src/test/org/hibernate/tool/NonReflectiveTestCase.java Log: minor Modified: trunk/HibernateExt/tools/src/test/org/hibernate/tool/NonReflectiveTestCase.java =================================================================== --- trunk/HibernateExt/tools/src/test/org/hibernate/tool/NonReflectiveTestCase.java 2006-05-19 07:18:08 UTC (rev 9935) +++ trunk/HibernateExt/tools/src/test/org/hibernate/tool/NonReflectiveTestCase.java 2006-05-19 14:33:37 UTC (rev 9936) @@ -33,6 +33,10 @@ super(name, outputdir); } + public NonReflectiveTestCase(String name) { + super(name); + } + protected boolean recreateSchema() { return true; } @@ -97,7 +101,7 @@ * @return */ protected String getBaseForMappings() { - return "org/hibernate/test/"; + return "org/hibernate/tool/"; } public String getCacheConcurrencyStrategy() { |