ANN-817 : 8-bit characters in string values cause unit test failures

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16305 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Gail Badner 2009-04-11 04:54:37 +00:00
parent d653efeceb
commit e560aaf2ae
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class Ejb3XmlTest extends TestCase {
s.getTransaction().begin();
Lighter l = new Lighter();
l.name = "Blue";
l.power = "400°F";
l.power = "400F";
s.persist( l );
s.flush();
s.getTransaction().rollback();