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()
1818 [ TestMethod ]
1919 public void AuthenticateShouldThrowArgumentNullExceptionWhenConnectionInfoIsNull ( )
2020 {
21- IConnectionInfoInternal connectionInfo = null ;
21+ const IConnectionInfoInternal connectionInfo = null ;
2222 var session = new Mock < ISession > ( MockBehavior . Strict ) . Object ;
2323
2424 try
@@ -37,7 +37,7 @@ public void AuthenticateShouldThrowArgumentNullExceptionWhenConnectionInfoIsNull
3737 public void AuthenticateShouldThrowArgumentNullExceptionWhenSessionIsNull ( )
3838 {
3939 var connectionInfo = new Mock < IConnectionInfoInternal > ( MockBehavior . Strict ) . Object ;
40- ISession session = null ;
40+ const ISession session = null ;
4141
4242 try
4343 {
You can’t perform that action at this time.
0 commit comments