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);