[hibernate-commits] Hibernate SVN: r11620 - branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/test/jdbc2cfg.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Jun 4 08:57:40 EDT 2007


Author: max.andersen at jboss.com
Date: 2007-06-04 08:57:40 -0400 (Mon, 04 Jun 2007)
New Revision: 11620

Modified:
   branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/test/jdbc2cfg/CompositeIdTest.java
Log:
fix various OS specific casing issues

Modified: branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/test/jdbc2cfg/CompositeIdTest.java
===================================================================
--- branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/test/jdbc2cfg/CompositeIdTest.java	2007-06-04 12:56:41 UTC (rev 11619)
+++ branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/test/jdbc2cfg/CompositeIdTest.java	2007-06-04 12:57:40 UTC (rev 11620)
@@ -230,12 +230,12 @@
         
         Configuration derived = new Configuration();
         
-        derived.addFile(new File(outputdir, "SimplecustomerOrder.hbm.xml") );
-        derived.addFile(new File(outputdir, "SimpleLineItem.hbm.xml") );
+        derived.addFile(new File(outputdir, "Simplecustomerorder.hbm.xml") );
+        derived.addFile(new File(outputdir, "Simplelineitem.hbm.xml") );
         derived.addFile(new File(outputdir, "Product.hbm.xml") );
         derived.addFile(new File(outputdir, "Customer.hbm.xml") );
-        derived.addFile(new File(outputdir, "LineItem.hbm.xml") );
-        derived.addFile(new File(outputdir, "CustomerOrder.hbm.xml") );
+        derived.addFile(new File(outputdir, "Lineitem.hbm.xml") );
+        derived.addFile(new File(outputdir, "Customerorder.hbm.xml") );
         
         derived.buildMappings();        
         




More information about the hibernate-commits mailing list