From fc5769b219fcdb93ad7532150afd8922da2541a9 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Wed, 7 Jan 2026 01:56:34 -0500 Subject: [PATCH] test: fix ServiceRegistrationTests config key (Ldap:UseFakeAuth) --- .../Configuration/ServiceRegistrationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEW/tests/JdeScoping.Api.Tests/Configuration/ServiceRegistrationTests.cs b/NEW/tests/JdeScoping.Api.Tests/Configuration/ServiceRegistrationTests.cs index bbccc4a..595feb6 100644 --- a/NEW/tests/JdeScoping.Api.Tests/Configuration/ServiceRegistrationTests.cs +++ b/NEW/tests/JdeScoping.Api.Tests/Configuration/ServiceRegistrationTests.cs @@ -18,7 +18,7 @@ public class ServiceRegistrationTests var configuration = new ConfigurationBuilder() .AddInMemoryCollection(new Dictionary { - ["Auth:UseFakeAuth"] = "true" + ["Ldap:UseFakeAuth"] = "true" }) .Build();