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 1eac7d8 commit a6f5d35Copy full SHA for a6f5d35
1 file changed
src/Renci.SshNet.Tests/Classes/ClientAuthenticationTest.cs
@@ -18,7 +18,7 @@ public void Init()
18
[TestMethod]
19
public void AuthenticateShouldThrowArgumentNullExceptionWhenConnectionInfoIsNull()
20
{
21
- IConnectionInfoInternal connectionInfo = null;
+ const IConnectionInfoInternal connectionInfo = null;
22
var session = new Mock<ISession>(MockBehavior.Strict).Object;
23
24
try
@@ -37,7 +37,7 @@ public void AuthenticateShouldThrowArgumentNullExceptionWhenConnectionInfoIsNull
37
public void AuthenticateShouldThrowArgumentNullExceptionWhenSessionIsNull()
38
39
var connectionInfo = new Mock<IConnectionInfoInternal>(MockBehavior.Strict).Object;
40
- ISession session = null;
+ const ISession session = null;
41
42
43
0 commit comments