Skip to content

Commit

Permalink
Sync EF Core to 7.0.0-rc.1.22404.6
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed Aug 5, 2022
1 parent f666864 commit cd955dc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<EFCoreVersion>7.0.0-rc.1.22378.4</EFCoreVersion>
<MicrosoftExtensionsVersion>7.0.0-rc.1.22374.4</MicrosoftExtensionsVersion>
<EFCoreVersion>7.0.0-rc.1.22404.6</EFCoreVersion>
<MicrosoftExtensionsVersion>7.0.0-rc.1.22381.5</MicrosoftExtensionsVersion>
<NpgsqlVersion>7.0.0-preview.6</NpgsqlVersion>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2913,9 +2913,14 @@ await Test(

public class MigrationsNpgsqlFixture : MigrationsFixtureBase
{
protected override string StoreName => nameof(MigrationsNpgsqlTest);
protected override ITestStoreFactory TestStoreFactory => NpgsqlTestStoreFactory.Instance;
public override TestHelpers TestHelpers => NpgsqlTestHelpers.Instance;
protected override string StoreName
=> nameof(MigrationsNpgsqlTest);

protected override ITestStoreFactory TestStoreFactory
=> NpgsqlTestStoreFactory.Instance;

public override RelationalTestHelpers TestHelpers
=> NpgsqlTestHelpers.Instance;

protected override IServiceCollection AddServices(IServiceCollection serviceCollection)
=> base.AddServices(serviceCollection)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;

public class NpgsqlTestHelpers : TestHelpers
public class NpgsqlTestHelpers : RelationalTestHelpers
{
protected NpgsqlTestHelpers() {}

Expand Down

0 comments on commit cd955dc

Please sign in to comment.