chore: Fixes name verification test (#2201)

This commit is contained in:
Kamron Batman 2025-05-26 22:36:23 -07:00 committed by GitHub
parent a07e225911
commit fff6e19a18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -119,7 +119,7 @@ public class NameVerificationTests
public void Validate_TooManyExceptions_ReturnsFalse() public void Validate_TooManyExceptions_ReturnsFalse()
{ {
var exceptions = SearchValues.Create(' ', '-', '.'); var exceptions = SearchValues.Create(' ', '-', '.');
Assert.False(NameVerification.Validate("A-B.C D-E", 2, 16, true, false, false, 3, exceptions)); Assert.False(NameVerification.Validate("A-B.C D-E", 2, 16, true, false, false, 1, exceptions));
} }
[Fact] [Fact]