diff --git a/test/Renci.SshNet.IntegrationTests/OldIntegrationTests/SshCommandTest.cs b/test/Renci.SshNet.IntegrationTests/OldIntegrationTests/SshCommandTest.cs index 1993c2b2a..8e3c8c6ab 100644 --- a/test/Renci.SshNet.IntegrationTests/OldIntegrationTests/SshCommandTest.cs +++ b/test/Renci.SshNet.IntegrationTests/OldIntegrationTests/SshCommandTest.cs @@ -457,14 +457,14 @@ public void Test_MultipleThread_100_MultipleConnections() client.Connect(); return client; }, - (int counter, ParallelLoopState pls, SshClient client) => + (counter, pls, client) => { var result = ExecuteTestCommand(client); Debug.WriteLine(string.Format("TestMultipleThreadMultipleConnections #{0}", counter)); Assert.IsTrue(result); return client; }, - (SshClient client) => + client => { client.Disconnect(); client.Dispose();