Author: stliu
Date: 2010-09-26 14:17:36 -0400 (Sun, 26 Sep 2010)
New Revision: 20714
Modified:
core/trunk/entitymanager/src/test/java/org/hibernate/ejb/test/query/QueryTest.java
Log:
correct non utf-8 character
Modified:
core/trunk/entitymanager/src/test/java/org/hibernate/ejb/test/query/QueryTest.java
===================================================================
---
core/trunk/entitymanager/src/test/java/org/hibernate/ejb/test/query/QueryTest.java 2010-09-26
18:10:52 UTC (rev 20713)
+++
core/trunk/entitymanager/src/test/java/org/hibernate/ejb/test/query/QueryTest.java 2010-09-26
18:17:36 UTC (rev 20714)
@@ -55,7 +55,7 @@
public void testParameterList() throws Exception {
final Item item = new Item( "Mouse", "Micro$oft mouse" );
- final Item item2 = new Item( "Computer", "D�ll computer" );
+ final Item item2 = new Item( "Computer", "Dell computer" );
EntityManager em = getOrCreateEntityManager();
em.getTransaction().begin();
@@ -127,7 +127,7 @@
public void testEscapeCharacter() throws Exception {
final Item item = new Item( "Mouse", "Micro_oft mouse" );
- final Item item2 = new Item( "Computer", "D�ll computer" );
+ final Item item2 = new Item( "Computer", "Dell computer" );
EntityManager em = getOrCreateEntityManager();
em.getTransaction().begin();
Show replies by thread