File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Renci.SshNet.Tests/Classes Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public void Init()
18
18
[ TestMethod ]
19
19
public void AuthenticateShouldThrowArgumentNullExceptionWhenConnectionInfoIsNull ( )
20
20
{
21
- IConnectionInfoInternal connectionInfo = null ;
21
+ const IConnectionInfoInternal connectionInfo = null ;
22
22
var session = new Mock < ISession > ( MockBehavior . Strict ) . Object ;
23
23
24
24
try
@@ -37,7 +37,7 @@ public void AuthenticateShouldThrowArgumentNullExceptionWhenConnectionInfoIsNull
37
37
public void AuthenticateShouldThrowArgumentNullExceptionWhenSessionIsNull ( )
38
38
{
39
39
var connectionInfo = new Mock < IConnectionInfoInternal > ( MockBehavior . Strict ) . Object ;
40
- ISession session = null ;
40
+ const ISession session = null ;
41
41
42
42
try
43
43
{
You can’t perform that action at this time.
0 commit comments