|
From: <hib...@li...> - 2006-07-24 10:52:08
|
Author: max...@jb...
Date: 2006-07-24 06:52:04 -0400 (Mon, 24 Jul 2006)
New Revision: 10138
Modified:
branches/Branch_3_2/Hibernate3/test/org/hibernate/test/hql/ASTParserLoadingTest.java
Log:
proper naming
Modified: branches/Branch_3_2/Hibernate3/test/org/hibernate/test/hql/ASTParserLoadingTest.java
===================================================================
--- branches/Branch_3_2/Hibernate3/test/org/hibernate/test/hql/ASTParserLoadingTest.java 2006-07-24 10:51:54 UTC (rev 10137)
+++ branches/Branch_3_2/Hibernate3/test/org/hibernate/test/hql/ASTParserLoadingTest.java 2006-07-24 10:52:04 UTC (rev 10138)
@@ -168,7 +168,7 @@
s.close();
}
- public void testParameterTypeMismatchFails() {
+ public void testParameterTypeMismatchFailureExpected() {
Session s = openSession();
s.beginTransaction();
@@ -291,7 +291,7 @@
s.close();
}
- public void testFetchInSubqueryFails() {
+ public void testFetchInSubqueryFailureExpected() {
Session s = openSession();
try {
s.createQuery( "from Animal a where a.mother in (select m from Animal a1 inner join a1.mother as m join fetch m.mother)" ).list();
|