Skip to content

Commit a6f5d35

Browse files
committed
Fix warnings.
1 parent 1eac7d8 commit a6f5d35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Renci.SshNet.Tests/Classes/ClientAuthenticationTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
{

0 commit comments

Comments
 (0)