[hibernate-commits] Hibernate SVN: r16345 - annotations/branches/v3_3_1_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:09:32 EDT 2009


Author: gbadner
Date: 2009-04-15 15:09:32 -0400 (Wed, 15 Apr 2009)
New Revision: 16345

Modified:
   annotations/branches/v3_3_1_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_3_1_GA_CP/src/test/org/hibernate/test/annotations/onetomany/OneToManyTest.java
===================================================================
--- annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/onetomany/OneToManyTest.java	2009-04-15 18:40:43 UTC (rev 16344)
+++ annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/onetomany/OneToManyTest.java	2009-04-15 19:09:32 UTC (rev 16345)
@@ -65,7 +65,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