diff --git a/test/AssociationRegistry.Test.Admin.Api/Fixtures/Scenarios/EventsInDb/V047_FeitelijkeVerenigingWerdGeregistreerd_WithMinimalFields_ForDuplicateDetection_WithAnalyzer.cs b/test/AssociationRegistry.Test.Admin.Api/Fixtures/Scenarios/EventsInDb/V047_FeitelijkeVerenigingWerdGeregistreerd_WithMinimalFields_ForDuplicateDetection_WithAnalyzer.cs index 204e2cb62..31c44bd15 100644 --- a/test/AssociationRegistry.Test.Admin.Api/Fixtures/Scenarios/EventsInDb/V047_FeitelijkeVerenigingWerdGeregistreerd_WithMinimalFields_ForDuplicateDetection_WithAnalyzer.cs +++ b/test/AssociationRegistry.Test.Admin.Api/Fixtures/Scenarios/EventsInDb/V047_FeitelijkeVerenigingWerdGeregistreerd_WithMinimalFields_ForDuplicateDetection_WithAnalyzer.cs @@ -45,7 +45,8 @@ public V047_FeitelijkeVerenigingWerdGeregistreerd_WithMinimalFields_ForDuplicate new NaamWerdGewijzigd("V9999047", "Vereniging van Technologïeënthusiasten: Inováçie & Ëntwikkeling"), new KorteNaamWerdGewijzigd("V9999047", "Korte Naam Test"), new HoofdactiviteitenVerenigingsloketWerdenGewijzigd( - HoofdactiviteitVerenigingsloket.All().Take(3).Select(Registratiedata.HoofdactiviteitVerenigingsloket.With) + HoofdactiviteitVerenigingsloket.All().Take(3) + .Select(Registratiedata.HoofdactiviteitVerenigingsloket.With) .ToArray()), new LocatieWerdToegevoegd(locatie), new LocatieWerdGewijzigd(locatie with { Naam = "Erembodegem"}), diff --git a/test/AssociationRegistry.Test.Admin.Api/WhenDetectingDuplicates/Playground/ForDuplicateDetection.cs b/test/AssociationRegistry.Test.Admin.Api/WhenDetectingDuplicates/Playground/ForDuplicateDetection.cs index 687182d1e..c6a2ef29c 100644 --- a/test/AssociationRegistry.Test.Admin.Api/WhenDetectingDuplicates/Playground/ForDuplicateDetection.cs +++ b/test/AssociationRegistry.Test.Admin.Api/WhenDetectingDuplicates/Playground/ForDuplicateDetection.cs @@ -106,7 +106,7 @@ public DuplicateDetectionSetup() var configuration = new ConfigurationBuilder() .SetBasePath(rootDirectory) .AddJsonFile("appsettings.json") - .AddJsonFile($"appsettings.{Environment.MachineName.ToLower()}.json") + .AddJsonFile($"appsettings.{Environment.MachineName.ToLower()}.json", optional: true) .Build(); var elasticSearchOptions = configuration.GetSection("ElasticClientOptions")