correct non utf-8 character
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20714 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
b21ae56c67
commit
dd1070c474
|
@ -55,7 +55,7 @@ public class QueryTest extends TestCase {
|
|||
|
||||
public void testParameterList() throws Exception {
|
||||
final Item item = new Item( "Mouse", "Micro$oft mouse" );
|
||||
final Item item2 = new Item( "Computer", "D<EFBFBD>ll computer" );
|
||||
final Item item2 = new Item( "Computer", "Dell computer" );
|
||||
|
||||
EntityManager em = getOrCreateEntityManager();
|
||||
em.getTransaction().begin();
|
||||
|
@ -127,7 +127,7 @@ public class QueryTest extends TestCase {
|
|||
|
||||
public void testEscapeCharacter() throws Exception {
|
||||
final Item item = new Item( "Mouse", "Micro_oft mouse" );
|
||||
final Item item2 = new Item( "Computer", "D<EFBFBD>ll computer" );
|
||||
final Item item2 = new Item( "Computer", "Dell computer" );
|
||||
|
||||
EntityManager em = getOrCreateEntityManager();
|
||||
em.getTransaction().begin();
|
||||
|
|
Loading…
Reference in New Issue