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 10d935a commit a7b8e66Copy full SHA for a7b8e66
src/Identity/test/Identity.Test/PasswordValidatorTest.cs
@@ -28,10 +28,10 @@ public async Task ValidateThrowsWithNullTest()
28
}
29
30
[Theory]
31
- [InlineData(null)]
32
- [InlineData("")]
33
- [InlineData("abc")]
34
- [InlineData("abcde")]
+ [InlineData(null)]
+ [InlineData("")]
+ [InlineData("abc")]
+ [InlineData("abcde")]
35
public async Task FailsIfPasswordIsNullOrTooShort(string input)
36
{
37
const string error = "Passwords must be at least 6 characters.";
0 commit comments