mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-01 14:26:40 +01:00
Applied review suggestions
This commit is contained in:
@@ -14,7 +14,7 @@ public class EfMigrationTests
|
||||
{
|
||||
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.");
|
||||
Assert.False(context.Database.HasPendingModelChanges(), "There are unapplied changes to the EFCore model for PgSQL. Please create a Migration.");
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -22,6 +22,6 @@ public class EfMigrationTests
|
||||
{
|
||||
var dbDesignContext = new SqliteDesignTimeJellyfinDbFactory();
|
||||
var context = dbDesignContext.CreateDbContext([]);
|
||||
Assert.False(context.Database.HasPendingModelChanges(), "There are unapplied changes to the EfCore model for PgSQL. Please create a Migration.");
|
||||
Assert.False(context.Database.HasPendingModelChanges(), "There are unapplied changes to the EFCore model for SQLite. Please create a Migration.");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user