From ee88fb8f242b40d3e143d161e8b78d5e59f22deb Mon Sep 17 00:00:00 2001 From: Arne Dumarey Date: Wed, 21 Aug 2024 11:38:59 +0200 Subject: [PATCH] fix: style to trigger bump --- test/PostalRegistry.Tests/FakeIdempotencyContextFactory.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/test/PostalRegistry.Tests/FakeIdempotencyContextFactory.cs b/test/PostalRegistry.Tests/FakeIdempotencyContextFactory.cs index 69602fb6..9a82fa65 100644 --- a/test/PostalRegistry.Tests/FakeIdempotencyContextFactory.cs +++ b/test/PostalRegistry.Tests/FakeIdempotencyContextFactory.cs @@ -13,7 +13,6 @@ public IdempotencyContext CreateDbContext(params string[] args) var tableInfo = new IdempotencyTableInfo("dbo"); optionsBuilder.UseInMemoryDatabase(Guid.NewGuid().ToString()); - return new IdempotencyContext(optionsBuilder.Options, tableInfo); } }