From 2f74e7df94695e5313a15987a1c3fdd2f31131db Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 00:15:05 +0000 Subject: [PATCH] Update Tests/VTEX.Tests/Controllers/ProductSpecificationControllerTests.cs --- .../Controllers/ProductSpecificationControllerTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/VTEX.Tests/Controllers/ProductSpecificationControllerTests.cs b/Tests/VTEX.Tests/Controllers/ProductSpecificationControllerTests.cs index c4eb6cc55..557d5c56c 100644 --- a/Tests/VTEX.Tests/Controllers/ProductSpecificationControllerTests.cs +++ b/Tests/VTEX.Tests/Controllers/ProductSpecificationControllerTests.cs @@ -24,6 +24,7 @@ public async Task GetSpecifications_ReturnsOkResult() // Arrange int productId = 1; + _context.GetProductSpecificationsAsync(productId, Arg.Any()).Returns(new List()); // Act var result = await _controller.GetSpecifications(productId, CancellationToken.None);