Skip to content

Commit

Permalink
Update AddItemToBasket.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis authored Oct 26, 2021
1 parent c7e171e commit 4da4822
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class AddItemToBasket
private readonly Mock<IRepository<Basket>> _mockBasketRepo = new();

[Fact]
public async Task InvokesBasketRepositoryFirstOrDefaultAsyncOnce()
public async Task InvokesBasketRepositoryGetBySpecAsyncOnce()
{
var basket = new Basket(_buyerId);
basket.AddItem(1, It.IsAny<decimal>(), It.IsAny<int>());
Expand Down

0 comments on commit 4da4822

Please sign in to comment.