chore(tests): dotnet format sobre archivos pre-existentes (surfaced durante CAT-001)

Fix mecánico de whitespace detectado por dotnet format --verify-no-changes durante la verify phase de CAT-001 (PR #30). Sin cambios funcionales.
This commit is contained in:
2026-04-18 20:56:23 -03:00
parent 8353f73230
commit 9957724c40
13 changed files with 110 additions and 102 deletions

View File

@@ -66,10 +66,10 @@ public class TempPasswordGeneratorTests
{
var pwd = TempPasswordGenerator.Generate(12);
Assert.True(pwd.Length >= 12);
Assert.True(pwd.Any(char.IsUpper));
Assert.True(pwd.Any(char.IsLower));
Assert.True(pwd.Any(char.IsDigit));
Assert.True(pwd.Any(c => symbols.Contains(c)));
Assert.Contains(pwd, char.IsUpper);
Assert.Contains(pwd, char.IsLower);
Assert.Contains(pwd, char.IsDigit);
Assert.Contains(pwd, c => symbols.Contains(c));
}
}