Skip to content

Commit

Permalink
chore: Formatting store tests
Browse files Browse the repository at this point in the history
  • Loading branch information
svrooij committed May 2, 2024
1 parent ef66327 commit 8f40cca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/WingetIntune.Tests/MsStore/MicrosoftStoreClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public async Task GetDisplayCatalogAsync_ReturnsExpectedResult()
// Assert
Assert.NotNull(result);
Assert.Equal(packageId, result?.Products.FirstOrDefault()?.ProductId);


}

Expand Down Expand Up @@ -120,7 +120,7 @@ public async Task Search_ReturnsExpectedResult()
}", Encoding.UTF8, "application/json")
};

httpClient.SendAsync(Arg.Is<HttpRequestMessage>(req =>
httpClient.SendAsync(Arg.Is<HttpRequestMessage>(req =>
req.Method == HttpMethod.Post
&& req.RequestUri == new Uri("https://storeedgefd.dsx.mp.microsoft.com/v9.0/manifestSearch")), cancellationToken)
.Returns(expectedResponse);
Expand Down

0 comments on commit 8f40cca

Please sign in to comment.