Skip to content

Commit

Permalink
Merge pull request #1100 from github/timrogers/fix-build-failure
Browse files Browse the repository at this point in the history
  • Loading branch information
timrogers authored Aug 21, 2023
2 parents 1a20ec6 + 3a1ca97 commit 09846cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public async Task GetAsync_Logs_The_Response_Status_Code_And_Content()
public async Task GetAsync_Throws_HttpRequestException_On_Non_Success_Response()
{
// Arrange
var httpResponse = () => new HttpResponseMessage(HttpStatusCode.InternalServerError);
using var httpResponse = new HttpResponseMessage(HttpStatusCode.InternalServerError);
var handlerMock = new Mock<HttpMessageHandler>();
handlerMock
.Protected()
Expand Down

0 comments on commit 09846cc

Please sign in to comment.