Skip to content

Commit d345f6a

Browse files
authored
Merge pull request #204469 from mike-urnun-msft/patch-33
(Azure CXP) sample fix
2 parents 6b96d1d + 545dd59 commit d345f6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/durable/durable-functions-unit-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ durableClientMock
7373
// Notice that even though the HttpStart function does not call IDurableClient.CreateCheckStatusResponse()
7474
// with the optional parameter returnInternalServerErrorOnFailure, moq requires the method to be set up
7575
// with each of the optional parameters provided. Simply use It.IsAny<> for each optional parameter
76-
.Setup(x => x.CreateCheckStatusResponse(It.IsAny<HttpRequestMessage>(), instanceId, returnInternalServerErrorOnFailure: It.IsAny<bool>())
76+
.Setup(x => x.CreateCheckStatusResponse(It.IsAny<HttpRequestMessage>(), instanceId, returnInternalServerErrorOnFailure: It.IsAny<bool>()))
7777
.Returns(new HttpResponseMessage
7878
{
7979
StatusCode = HttpStatusCode.OK,

0 commit comments

Comments
 (0)