mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-17 00:24:57 +00:00
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 void testAggregationReturnType() throws Exception {
|
||||
|
||||
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 void testParameterList() throws Exception {
|
||||
|
||||
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…
x
Reference in New Issue
Block a user