From 5d185667e56f35724964efe3e2f039b90c3f079b Mon Sep 17 00:00:00 2001 From: Jakub Chocholowicz Date: Fri, 19 Jun 2020 14:56:09 +0200 Subject: [PATCH] Fix last unit test --- test/TranslationLayer.UnitTests/VsTestConsoleWrapperTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/TranslationLayer.UnitTests/VsTestConsoleWrapperTests.cs b/test/TranslationLayer.UnitTests/VsTestConsoleWrapperTests.cs index fd48f7b979..b27f781ba1 100644 --- a/test/TranslationLayer.UnitTests/VsTestConsoleWrapperTests.cs +++ b/test/TranslationLayer.UnitTests/VsTestConsoleWrapperTests.cs @@ -56,6 +56,7 @@ public void TestInitialize() this.mockRequestSender.Setup(rs => rs.WaitForRequestHandlerConnection(It.IsAny())).Returns(true); this.mockRequestSender.Setup(rs => rs.InitializeCommunication()).Returns(100); + this.mockRequestSender.Setup(rs => rs.InitializeCommunicationAsync(It.IsAny())).Returns(Task.FromResult(100)); } [TestMethod]