We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d08c4aa commit f24a5d6Copy full SHA for f24a5d6
test/Renci.SshNet.IntegrationTests/OldIntegrationTests/SshCommandTest.cs
@@ -457,14 +457,14 @@ public void Test_MultipleThread_100_MultipleConnections()
457
client.Connect();
458
return client;
459
},
460
- (int counter, ParallelLoopState pls, SshClient client) =>
+ (counter, pls, client) =>
461
{
462
var result = ExecuteTestCommand(client);
463
Debug.WriteLine(string.Format("TestMultipleThreadMultipleConnections #{0}", counter));
464
Assert.IsTrue(result);
465
466
467
- (SshClient client) =>
+ client =>
468
469
client.Disconnect();
470
client.Dispose();
0 commit comments