Skip to content

Commit

Permalink
fix uint test
Browse files Browse the repository at this point in the history
  • Loading branch information
tatarincev committed Nov 8, 2024
1 parent b7b42b5 commit 58d74fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ public async Task RecalculateAsync_HasPromoRewards_CalculateTotalsCalled()
var result = await cartAggregate.RecalculateAsync();

// Assert
_shoppingCartTotalsCalculatorMock.Verify(x => x.CalculateTotals(It.Is<ShoppingCart>(x => x == cartAggregate.Cart)), Times.Once);
_shoppingCartTotalsCalculatorMock.Verify(x => x.CalculateTotals(It.Is<ShoppingCart>(x => x == cartAggregate.Cart)), Times.Exactly(2));
}

#endregion RecalculateAsync
Expand Down

0 comments on commit 58d74fd

Please sign in to comment.