From: <te...@us...> - 2009-07-09 10:46:23
|
Revision: 4594 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4594&view=rev Author: tehlike Date: 2009-07-09 10:46:19 +0000 (Thu, 09 Jul 2009) Log Message: ----------- Fixing my broken commit. Modified Paths: -------------- branches/2.1.x/nhibernate/src/NHibernate/Criterion/GroupedProjection.cs branches/2.1.x/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1877/Fixture.cs Modified: branches/2.1.x/nhibernate/src/NHibernate/Criterion/GroupedProjection.cs =================================================================== --- branches/2.1.x/nhibernate/src/NHibernate/Criterion/GroupedProjection.cs 2009-07-09 10:00:00 UTC (rev 4593) +++ branches/2.1.x/nhibernate/src/NHibernate/Criterion/GroupedProjection.cs 2009-07-09 10:46:19 UTC (rev 4594) @@ -8,6 +8,7 @@ namespace NHibernate.Criterion { + [Serializable] public class GroupedProjection:IProjection { private readonly IProjection projection; Modified: branches/2.1.x/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1877/Fixture.cs =================================================================== --- branches/2.1.x/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1877/Fixture.cs 2009-07-09 10:00:00 UTC (rev 4593) +++ branches/2.1.x/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1877/Fixture.cs 2009-07-09 10:46:19 UTC (rev 4594) @@ -56,7 +56,6 @@ Projections.GroupProperty(Projections.SqlFunction("month", NHibernateUtil.Int32, Projections.Property("BirthDate")))); var result = crit.UniqueResult(); - Assert.That(result, Has.Count.EqualTo(1)); Assert.That(result,Is.EqualTo(7)); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |