minor test fix

This commit is contained in:
David Sparer
2017-01-28 13:40:55 -07:00
parent bd2054e5a4
commit 59a7e4179b

View File

@@ -45,7 +45,7 @@ namespace mRemoteNGTests.Security.PasswordCreation
[Test]
public void CountToRequireMustBeAPositiveValue()
{
Assert.Throws<ArgumentException>(() => new PasswordIncludesLowerCaseConstraint(-1));
Assert.Throws<ArgumentException>(() => new PasswordIncludesUpperCaseConstraint(-1));
}
}
}