aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-02-19 18:21:23 +0000
committerJPVenson <github@jpb.email>2025-02-19 18:21:23 +0000
commitddc20b74bf2eddd686c14c084260ca457011f8be (patch)
tree59d6f0ffb40b2b09b1649199730e2022145a8db7 /tests
parent8b07c1f53ddf491499005b9e0da9cf1bbe93cf9a (diff)
Removed pgsql from refactor
Diffstat (limited to 'tests')
-rw-r--r--tests/Jellyfin.Server.Implementations.Tests/EfMigrations/EfMigrationTests.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/EfMigrations/EfMigrationTests.cs b/tests/Jellyfin.Server.Implementations.Tests/EfMigrations/EfMigrationTests.cs
index 78e431be1..3fe2caca7 100644
--- a/tests/Jellyfin.Server.Implementations.Tests/EfMigrations/EfMigrationTests.cs
+++ b/tests/Jellyfin.Server.Implementations.Tests/EfMigrations/EfMigrationTests.cs
@@ -1,6 +1,3 @@
-using System;
-using System.Threading.Tasks;
-using Jellyfin.Database.Providers.PgSql;
using Jellyfin.Server.Implementations.Migrations;
using Microsoft.EntityFrameworkCore;
using Xunit;
@@ -10,14 +7,6 @@ namespace Jellyfin.Server.Implementations.Tests.EfMigrations;
public class EfMigrationTests
{
[Fact]
- public void CheckForUnappliedMigrations_PgSQL()
- {
- var dbDesignContext = new PgSqlDesignTimeJellyfinDbFactory();
- var context = dbDesignContext.CreateDbContext([]);
- Assert.False(context.Database.HasPendingModelChanges(), "There are unapplied changes to the EFCore model for PgSQL. Please create a Migration.");
- }
-
- [Fact]
public void CheckForUnappliedMigrations_SqLite()
{
var dbDesignContext = new SqliteDesignTimeJellyfinDbFactory();