Skip to content

Commit f73169c

Browse files
committed
Partial (II) support of lazy="extra" (collections)
SVN: trunk@3716
1 parent 86e5e2d commit f73169c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NHibernate.Test/Extralazy/ExtraLazyFixture.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public void RemoveClear()
143143
s.Close();
144144
}
145145

146-
[Test, Ignore("Not supported yet")]
146+
[Test]
147147
public void IndexFormulaMap()
148148
{
149149
ISession s = OpenSession();
@@ -176,8 +176,8 @@ public void IndexFormulaMap()
176176
Assert.AreEqual(1, g.Users.Count);
177177
smap = ((User) g.Users["gavin"]).Session;
178178
Assert.AreEqual(1, smap.Count);
179+
gavin = (User) g.Users["gavin"]; // NH: put in JAVA return the previous value
179180
g.Users["gavin"]= turin;
180-
gavin = (User) g.Users["gavin"];
181181
s.Delete(gavin);
182182
Assert.AreEqual(0, s.CreateQuery("select count(*) from SessionAttribute").UniqueResult<long>());
183183
t.Commit();

0 commit comments

Comments
 (0)