EmptyCart bug fix

This commit is contained in:
Megan O'Keefe 2020-01-28 10:24:09 -05:00
parent 53f2528094
commit e5fb708cf2
2 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ namespace cartservice.cartstore
public Task EmptyCartAsync(string userId)
{
Console.WriteLine($"EmptyCartAsync called with userId={userId}");
userCartItems[userId] = emptyCart;
userCartItems[userId] = new Hipstershop.Cart();
return Task.CompletedTask;
}