From 42965be770dacfb79929fba8138ebef1b85d2e41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9E=D0=BB=D1=8F=20=D0=91=D0=B8=D0=B7=D1=8E=D0=BA=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0?= Date: Thu, 12 Dec 2024 13:37:07 +0500 Subject: [PATCH] =?UTF-8?q?GC.SuppressFinalize(this)=20=D0=B2=D0=BD=D1=82?= =?UTF-8?q?=D1=83=D1=80=D0=B8=20=D0=BC=D0=B5=D1=82=D0=BE=D0=B4=D0=B0=20Dis?= =?UTF-8?q?poseAsync=20=D0=B2=20WebAppFactoryFixture?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Persistence.IntegrationTests/WebAppFactoryFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Persistence.IntegrationTests/WebAppFactoryFixture.cs b/Persistence.IntegrationTests/WebAppFactoryFixture.cs index e9bff4c..9450608 100644 --- a/Persistence.IntegrationTests/WebAppFactoryFixture.cs +++ b/Persistence.IntegrationTests/WebAppFactoryFixture.cs @@ -61,6 +61,6 @@ public class WebAppFactoryFixture : WebApplicationFactory await dbContext.Database.EnsureDeletedAsync(); - GC.SuppressFinalize(dbContext); + GC.SuppressFinalize(this); } }