From 6249418f2e24191638c57c624c45214883ae84de 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: Tue, 28 Jan 2025 13:10:14 +0500 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B1=D1=80=D0=B0=D0=BD=D0=B0=20=D0=BD?= =?UTF-8?q?=D0=B5=D0=B8=D1=81=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D1=83=D0=B5?= =?UTF-8?q?=D0=BC=D0=B0=D1=8F=20=D0=BF=D0=B5=D1=80=D0=B5=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D0=BD=D0=B0=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DD.Persistence.Database.Postgres.Test/DbFixture.cs | 2 +- .../UnitTestCheckHyperTables.cs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/DD.Persistence.Database.Postgres.Test/DbFixture.cs b/DD.Persistence.Database.Postgres.Test/DbFixture.cs index cb1d153..c3a0c64 100644 --- a/DD.Persistence.Database.Postgres.Test/DbFixture.cs +++ b/DD.Persistence.Database.Postgres.Test/DbFixture.cs @@ -6,7 +6,7 @@ using Microsoft.Extensions.DependencyInjection; namespace DD.Persistence.Database.Postgres.Test; public class DbFixture : IDisposable { - public string connectionString { get; } + private string connectionString { get; } public ServiceProvider serviceProvider { get; private set; } public DbFixture() diff --git a/DD.Persistence.Database.Postgres.Test/UnitTestCheckHyperTables.cs b/DD.Persistence.Database.Postgres.Test/UnitTestCheckHyperTables.cs index f0b8749..3179a67 100644 --- a/DD.Persistence.Database.Postgres.Test/UnitTestCheckHyperTables.cs +++ b/DD.Persistence.Database.Postgres.Test/UnitTestCheckHyperTables.cs @@ -9,12 +9,10 @@ namespace DD.Persistence.Database.Postgres.Test; public class UnitTestCheckHyperTables : IClassFixture { private ServiceProvider _serviceProvider; - private string _connectionString; public UnitTestCheckHyperTables(DbFixture fixture) { _serviceProvider = fixture.serviceProvider; - _connectionString = fixture.connectionString; } [Fact]