diff --git a/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs b/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs index a6f6ce1..24ad71f 100644 --- a/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs +++ b/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs @@ -144,18 +144,6 @@ public class ProductService : IProductService Data = productBuffer.Name }; productBuffer.Name = string.Empty; - - //a complete description of the entity when the Amazon API is connected - await _wishlistsService.AddProductToPersonalWishlistAsync(wishlistId, new ProductCreateDto() - { - Url = "", - Name = productBuffer.Name, - Rating = 0, - Description = "", - Price = 0, - ImagesUrls = new []{"", ""}, - WasOpened = false - }, cancellationToken); break; } productBuffer.Name += data; diff --git a/ShoppingAssistantApi.UnitTests/ProductTests.cs b/ShoppingAssistantApi.UnitTests/ProductTests.cs index 9887d90..808c6ce 100644 --- a/ShoppingAssistantApi.UnitTests/ProductTests.cs +++ b/ShoppingAssistantApi.UnitTests/ProductTests.cs @@ -216,14 +216,6 @@ public class ProductTests _messagesRepositoryMock.Setup(m => m.GetCountAsync(It.IsAny>>(), It.IsAny())) .ReturnsAsync(3); - - _wishListServiceMock - .Setup(w => w.AddProductToPersonalWishlistAsync( - It.IsAny(), It.IsAny(), It.IsAny())) - .Verifiable(); - - _wishListServiceMock.Setup(w => w.AddProductToPersonalWishlistAsync(wishlistId, It.IsAny(), cancellationToken)) - .Verifiable(); _wishListServiceMock .Setup(w => w.GetMessagesPageFromPersonalWishlistAsync( @@ -273,8 +265,6 @@ public class ProductTests Assert.NotNull(actualSseEvents); Assert.Equal(expectedMessages, receivedMessages); Assert.Equal(expectedSuggestions, receivedSuggestions); - _wishListServiceMock.Verify(w => w.AddProductToPersonalWishlistAsync( - It.IsAny(), It.IsAny(), It.IsAny()), Times.Exactly(3)); _wishListServiceMock.Verify(w => w.AddMessageToPersonalWishlistAsync( wishlistId, It.IsAny(), cancellationToken), Times.Once); }