We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62b141d commit 179ebe2Copy full SHA for 179ebe2
src/NHibernate.Test/Criteria/SelectModeTest/SelectModeTest.cs
@@ -336,7 +336,7 @@ public void SelectModeFetchLazyPropertiesForEntityJoin()
336
337
Assert.That(NHibernateUtil.IsInitialized(rootChild), Is.True);
338
Assert.That(NHibernateUtil.IsInitialized(parentJoin), Is.True);
339
- Assert.That(NHibernateUtil.IsPropertyInitialized(parentJoin, nameof(parentJoin.LazyProp)), Is.Not.Null.Or.Empty);
+ Assert.That(NHibernateUtil.IsPropertyInitialized(parentJoin, nameof(parentJoin.LazyProp)), Is.True);
340
Assert.That(parentJoin.LazyProp, Is.Not.Null.Or.Empty);
341
342
Assert.That(sqlLog.Appender.GetEvents().Length, Is.EqualTo(1), "Only one SQL select is expected");
0 commit comments