From 8f40cca607d7ad0de5575cd7548a9a5e70b23bc9 Mon Sep 17 00:00:00 2001 From: Stephan van Rooij <1292510+svrooij@users.noreply.github.com> Date: Thu, 2 May 2024 21:45:28 +0200 Subject: [PATCH] chore: Formatting store tests --- tests/WingetIntune.Tests/MsStore/MicrosoftStoreClientTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/WingetIntune.Tests/MsStore/MicrosoftStoreClientTests.cs b/tests/WingetIntune.Tests/MsStore/MicrosoftStoreClientTests.cs index 55a413f..a4a3ad7 100644 --- a/tests/WingetIntune.Tests/MsStore/MicrosoftStoreClientTests.cs +++ b/tests/WingetIntune.Tests/MsStore/MicrosoftStoreClientTests.cs @@ -36,7 +36,7 @@ public async Task GetDisplayCatalogAsync_ReturnsExpectedResult() // Assert Assert.NotNull(result); Assert.Equal(packageId, result?.Products.FirstOrDefault()?.ProductId); - + } @@ -120,7 +120,7 @@ public async Task Search_ReturnsExpectedResult() }", Encoding.UTF8, "application/json") }; - httpClient.SendAsync(Arg.Is(req => + httpClient.SendAsync(Arg.Is(req => req.Method == HttpMethod.Post && req.RequestUri == new Uri("https://storeedgefd.dsx.mp.microsoft.com/v9.0/manifestSearch")), cancellationToken) .Returns(expectedResponse);