From: <fab...@us...> - 2009-02-04 20:16:22
|
Revision: 4042 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4042&view=rev Author: fabiomaulo Date: 2009-02-04 20:16:20 +0000 (Wed, 04 Feb 2009) Log Message: ----------- Minor Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH364/Fixture.cs Modified: trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH364/Fixture.cs =================================================================== --- trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH364/Fixture.cs 2009-02-04 20:10:30 UTC (rev 4041) +++ trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH364/Fixture.cs 2009-02-04 20:16:20 UTC (rev 4042) @@ -90,7 +90,7 @@ using (ISession s = OpenSession()) { Invoice invToUpdate = s.Get<Invoice>(inv.Id); - ((InvoiceItem)invToUpdate.Items[0]).Quantity = 10; // update information of an element + ((InvoiceItem)invToUpdate.Items[0]).Quantity = 10m; // update information of an element invToUpdate.Items.Add(new InvoiceItem(product3, 1)); // update the idbag collection s.Flush(); s.Clear(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |