Skip to content

Commit 8a4d9ed

Browse files
committed
NH-3800 - Fixed some more tab spacing
1 parent 53417d1 commit 8a4d9ed

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/NHibernate.Test/Linq/ByMethod/GroupByTests.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -511,18 +511,18 @@ public void ProjectingWithSubQueriesFilteredByTheAggregateKey()
511511
public void SelectManyGroupByAggregateProjection()
512512
{
513513
var result = (from o in db.Orders
514-
from ol in o.OrderLines
515-
group ol by ol.Product.ProductId
516-
into grp
517-
select new
518-
{
519-
ProductId = grp.Key,
520-
Sum = grp.Sum(x => x.UnitPrice),
521-
Count = grp.Count(),
522-
Avg = grp.Average(x => x.UnitPrice),
523-
Min = grp.Min(x => x.UnitPrice),
524-
Max = grp.Max(x => x.UnitPrice),
525-
}
514+
from ol in o.OrderLines
515+
group ol by ol.Product.ProductId
516+
into grp
517+
select new
518+
{
519+
ProductId = grp.Key,
520+
Sum = grp.Sum(x => x.UnitPrice),
521+
Count = grp.Count(),
522+
Avg = grp.Average(x => x.UnitPrice),
523+
Min = grp.Min(x => x.UnitPrice),
524+
Max = grp.Max(x => x.UnitPrice),
525+
}
526526
).ToList();
527527

528528
Assert.That(result.Count, Is.EqualTo(77));

0 commit comments

Comments
 (0)