Skip to content

Commit

Permalink
Fix last unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubch1 committed Jun 19, 2020
1 parent 147f23e commit 5d18566
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public void TestInitialize()

this.mockRequestSender.Setup(rs => rs.WaitForRequestHandlerConnection(It.IsAny<int>())).Returns(true);
this.mockRequestSender.Setup(rs => rs.InitializeCommunication()).Returns(100);
this.mockRequestSender.Setup(rs => rs.InitializeCommunicationAsync(It.IsAny<int>())).Returns(Task.FromResult(100));
}

[TestMethod]
Expand Down

0 comments on commit 5d18566

Please sign in to comment.