From: <te...@us...> - 2009-02-05 23:22:21
|
Revision: 4053 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4053&view=rev Author: tehlike Date: 2009-02-05 21:57:10 +0000 (Thu, 05 Feb 2009) Log Message: ----------- Fixing a failing test. Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Test/HQL/HQLFunctions.cs Modified: trunk/nhibernate/src/NHibernate.Test/HQL/HQLFunctions.cs =================================================================== --- trunk/nhibernate/src/NHibernate.Test/HQL/HQLFunctions.cs 2009-02-05 13:24:13 UTC (rev 4052) +++ trunk/nhibernate/src/NHibernate.Test/HQL/HQLFunctions.cs 2009-02-05 21:57:10 UTC (rev 4053) @@ -750,6 +750,8 @@ [Test] public void Current_TimeStamp_Offset() { + if (!Dialect.Functions.ContainsKey("current_timestamp_offset")) + Assert.Ignore(Dialect + " doesn't support current_timestamp_offset function"); IgnoreIfNotSupported("current_timestamp_offset"); using (ISession s = OpenSession()) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |