[hibernate-commits] Hibernate SVN: r16346 - annotations/branches/v3_4_0_GA_CP/src/test/org/hibernate/test/annotations/onetomany.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Apr 15 15:14:22 EDT 2009


Author: gbadner
Date: 2009-04-15 15:14:22 -0400 (Wed, 15 Apr 2009)
New Revision: 16346

Modified:
   annotations/branches/v3_4_0_GA_CP/src/test/org/hibernate/test/annotations/onetomany/OneToManyTest.java
Log:
JBPAPP-1878 ANN-817 - 8-bit characters in string values cause unit test failures


Modified: annotations/branches/v3_4_0_GA_CP/src/test/org/hibernate/test/annotations/onetomany/OneToManyTest.java
===================================================================
--- annotations/branches/v3_4_0_GA_CP/src/test/org/hibernate/test/annotations/onetomany/OneToManyTest.java	2009-04-15 19:09:32 UTC (rev 16345)
+++ annotations/branches/v3_4_0_GA_CP/src/test/org/hibernate/test/annotations/onetomany/OneToManyTest.java	2009-04-15 19:14:22 UTC (rev 16346)
@@ -67,7 +67,7 @@
 		chmpsElysees.setStreetName( "Champs Elysees" );
 		chmpsElysees.setCity( paris );
 		Street grandeArmee = new Street();
-		grandeArmee.setStreetName( "Grande Armée" );
+		grandeArmee.setStreetName( "Grande Armee" );
 		grandeArmee.setCity( paris );
 		s.persist( rochechoir );
 		s.persist( chmpsElysees );




More information about the hibernate-commits mailing list