From: Michael D. <mik...@us...> - 2004-09-13 04:51:15
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23216/NHibernate.Test Modified Files: MasterDetailTest.cs Log Message: Fixed NH-78 with Hql using const fields in classes. If the class is not a mapped class then it needs to be imported so NH can convert the class name to a fully qualified type name. Index: MasterDetailTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/MasterDetailTest.cs,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** MasterDetailTest.cs 31 Aug 2004 08:23:31 -0000 1.14 --- MasterDetailTest.cs 13 Sep 2004 04:51:05 -0000 1.15 *************** *** 652,656 **** [Test] - [Ignore("HQL can't reference static property for const. http://jira.nhibernate.org:8080/browse/NH-78")] public void Categories() { --- 652,655 ---- *************** *** 680,685 **** Assert.IsTrue( enumer.MoveNext() ); s.Close(); - - } --- 679,682 ---- |