OPENJPA-806 : fix testcase: testGeneralCase & testParameter

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@727107 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Catalina Wei 2008-12-16 18:27:30 +00:00
parent 4cf216c21f
commit 13027e218c
1 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ public class TestCriteria extends SingleEMFTestCase {
+ " FROM Employee e" + " FROM Employee e"
+ " WHERE e.department.name = 'Engineering'"; + " WHERE e.department.name = 'Engineering'";
compare(jpql, e, "Case not supported"); compare(jpql, e);
} }
public void testMemberOf() { public void testMemberOf() {
@ -245,7 +245,7 @@ public class TestCriteria extends SingleEMFTestCase {
String jpql = "select c from Customer c " + String jpql = "select c from Customer c " +
" where c.status = :status"; " where c.status = :status";
compare(jpql, qdef, null, "status", 1); compare(jpql, qdef, "status", 1);
} }
public void testBetween() { public void testBetween() {