From f33f381bf85c5dfda7deb59702b22e5a80603c59 Mon Sep 17 00:00:00 2001 From: emalfroy Date: Wed, 18 Dec 2024 10:38:05 +0100 Subject: [PATCH] test: or-2334 fix test Given_A_NonExisting_Aggregate --- .../Given_A_NonExisting_Aggregate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/AssociationRegistry.Test/EventStore/When_Checking_If_AggregateExists/Given_A_NonExisting_Aggregate.cs b/test/AssociationRegistry.Test/EventStore/When_Checking_If_AggregateExists/Given_A_NonExisting_Aggregate.cs index 0bdc732ac..6eb453a28 100644 --- a/test/AssociationRegistry.Test/EventStore/When_Checking_If_AggregateExists/Given_A_NonExisting_Aggregate.cs +++ b/test/AssociationRegistry.Test/EventStore/When_Checking_If_AggregateExists/Given_A_NonExisting_Aggregate.cs @@ -35,7 +35,7 @@ public Given_A_NonExisting_Aggregate() [Fact] public async Task Then_it_Throws_Exception() { - var documentStore = await TestDocumentStoreFactory.Create(nameof(Given_An_Existing_Aggregate)); + var documentStore = await TestDocumentStoreFactory.Create(nameof(Given_A_NonExisting_Aggregate)); await using var session = documentStore.LightweightSession(); var eventStore = new EventStore(documentStore, _conflictResolver, NullLogger.Instance);