[hibernate-commits] Hibernate SVN: r10602 - branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Oct 18 06:50:07 EDT 2006


Author: steve.ebersole at jboss.com
Date: 2006-10-18 06:50:06 -0400 (Wed, 18 Oct 2006)
New Revision: 10602

Modified:
   branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java
Log:
removed (now) erroneous test

Modified: branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java
===================================================================
--- branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java	2006-10-18 00:58:41 UTC (rev 10601)
+++ branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java	2006-10-18 10:50:06 UTC (rev 10602)
@@ -29,18 +29,6 @@
 		s.close();
 	}
 
-	public void testNoSelectClause() {
-		Session s = openSession();
-		try {
-			s.createQuery( "from Part" ).list();
-			fail( "expecting parse failure" );
-		}
-		catch( QuerySyntaxException qe ) {
-			// expected behavior
-		}
-		s.close();
-	}
-
 	public void testIdentifierCaseSensitive() throws Exception {
 		Session s = openSession( );
 		s.createQuery( "select object(I) from Item i").list();




More information about the hibernate-commits mailing list