From fff6e19a18e85d7c047f3efff5c70fa930ea26a6 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Mon, 26 May 2025 22:36:23 -0700 Subject: [PATCH] chore: Fixes name verification test (#2201) --- Projects/UOContent.Tests/Tests/Misc/NameVerificationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/UOContent.Tests/Tests/Misc/NameVerificationTests.cs b/Projects/UOContent.Tests/Tests/Misc/NameVerificationTests.cs index ab0971904..a9e4f5c27 100644 --- a/Projects/UOContent.Tests/Tests/Misc/NameVerificationTests.cs +++ b/Projects/UOContent.Tests/Tests/Misc/NameVerificationTests.cs @@ -119,7 +119,7 @@ public class NameVerificationTests public void Validate_TooManyExceptions_ReturnsFalse() { 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]