Skip to content

Commit

Permalink
Add a missing dot
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed-Ghanam committed Oct 9, 2024
1 parent de8f506 commit 7a51015
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public async Task PostLookup_WhenRetrievalThrowsException_LogsErrorAndReturnsPro

var problemResult = Assert.IsType<ObjectResult>(response.Result);
Assert.Equal(StatusCodes.Status500InternalServerError, problemResult.StatusCode);
Assert.Equal("An unexpected error occurred", Convert.ToString(((ProblemDetails)problemResult.Value).Detail));
Assert.Equal("An unexpected error occurred.", Convert.ToString(((ProblemDetails)problemResult.Value).Detail));
}

[Fact]
Expand Down

0 comments on commit 7a51015

Please sign in to comment.