diff --git a/Btms.Analytics.Tests/MovementsByDecisionsTests.cs b/Btms.Analytics.Tests/MovementsByDecisionsTests.cs index e8ee5474..72a797ea 100644 --- a/Btms.Analytics.Tests/MovementsByDecisionsTests.cs +++ b/Btms.Analytics.Tests/MovementsByDecisionsTests.cs @@ -20,7 +20,7 @@ public async Task WhenCalled_ReturnExpectedAggregation() testOutputHelper.WriteLine("Querying for aggregated data"); var result = (await multiItemDataTestFixture.GetMovementsAggregationService(testOutputHelper) .ByDecision(DateTime.Today.MonthAgo(), DateTime.Today.Tomorrow())) - .Rows; + .Result; testOutputHelper.WriteLine("{0} aggregated items found", result.Count); diff --git a/Btms.Analytics.Tests/MovementsExceptionsTests.cs b/Btms.Analytics.Tests/MovementsExceptionsTests.cs index 1ab923b7..2d574f9a 100644 --- a/Btms.Analytics.Tests/MovementsExceptionsTests.cs +++ b/Btms.Analytics.Tests/MovementsExceptionsTests.cs @@ -20,7 +20,7 @@ public async Task WhenCalled_ReturnExpectedAggregation() testOutputHelper.WriteLine("Querying for aggregated data"); var result = (await multiItemDataTestFixture.GetMovementsAggregationService(testOutputHelper) .ByDecision(DateTime.Today.MonthAgo(), DateTime.Today.Tomorrow())) - .Rows; + .Result; testOutputHelper.WriteLine("{0} aggregated items found", result.Count);