Skip to content

Commit c6a552e

Browse files
committed
Clean up
1 parent 530b410 commit c6a552e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/NHibernate.Test/Async/Hql/EntityJoinHqlTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -346,9 +346,9 @@ public async Task NullableEntityProjectionAsync()
346346
var withNullManyToOneList = await (session.Query<NullableOwner>().Where(x => x.ManyToOne == null).ToListAsync());
347347
var withNullManyToOneJoinedList =
348348
await ((from x in session.Query<NullableOwner>()
349-
from x2 in session.Query<NullableOwner>()
350-
where x == x2 && x.ManyToOne == null && x.OneToOne.Name == null
351-
select x2).ToListAsync());
349+
from x2 in session.Query<NullableOwner>()
350+
where x == x2 && x.ManyToOne == null && x.OneToOne.Name == null
351+
select x2).ToListAsync());
352352
Assert.That(fullList.Count, Is.EqualTo(2));
353353
Assert.That(withValidManyToOneList.Count, Is.EqualTo(0));
354354
Assert.That(withValidManyToOneList2.Count, Is.EqualTo(0));

0 commit comments

Comments
 (0)