Skip to content

Commit 4dfe406

Browse files
committed
Merge branch 'master' into dev
2 parents 5fcd954 + 84df41a commit 4dfe406

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ The EfCore.TestSupport library is available on [NuGet as EfCore.TestSupport](htt
77
_NOTE: Version 5.1.0 and above of this library supports multiple versions of EF Core 5._
88

99
- _Version 5.1.0 and above supports EF Core 5.10 and EF Core 6.0_
10+
- _Version 5.2.0 and above supports EF Core 5.10, EF Core 6.0 and EF Core 7.0_
1011

1112
**WARNING: If you are updating from the original EfCore.TestSupport (2.1 or 3), then you should read the [Version5UpgradeDocs.md](https://github.com/JonPSmith/EfCore.TestSupport/blob/master/Version5UpgradeDocs.md) file as there are some breaking changes in this version.**
1213

Test/UnitTests/TestDataLayer/TestPostgreSqlHelpers.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,12 @@
33

44
using System.Collections.Generic;
55
using System.Linq;
6-
using System.Threading.Tasks;
76
using DataLayer.BookApp.EfCode;
87
using Microsoft.EntityFrameworkCore;
98
using Npgsql;
10-
using Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal;
119
using Test.Helpers;
1210
using TestSupport.Attributes;
1311
using TestSupport.EfHelpers;
14-
using TestSupport.Helpers;
1512
using Xunit;
1613
using Xunit.Abstractions;
1714
using Xunit.Extensions.AssertExtensions;
@@ -37,6 +34,7 @@ public void TestPostgreSqlUniqueClassOk()
3734
{
3835
//VERIFY
3936
var builder = new NpgsqlConnectionStringBuilder(context.Database.GetDbConnection().ConnectionString);
37+
_output.WriteLine(builder.Database);
4038
builder.Database.ShouldEndWith(GetType().Name);
4139
}
4240
}

0 commit comments

Comments
 (0)