Skip to content

Commit

Permalink
Fixes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
craigedmunds committed Dec 23, 2024
1 parent e25aa40 commit bb4d212
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Btms.Analytics.Tests/MovementsByDecisionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion Btms.Analytics.Tests/MovementsExceptionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit bb4d212

Please sign in to comment.