From e69603da3e51cfcdd0f2b401e50c9ccc0c565424 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 10 Dec 2020 13:14:41 -0500 Subject: [PATCH] Fix Unit Tests --- .../Database/DatabaseContext.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Tgstation.Server.Host/Database/DatabaseContext.cs b/src/Tgstation.Server.Host/Database/DatabaseContext.cs index 909f171e14..2681f8adb9 100644 --- a/src/Tgstation.Server.Host/Database/DatabaseContext.cs +++ b/src/Tgstation.Server.Host/Database/DatabaseContext.cs @@ -336,22 +336,22 @@ namespace Tgstation.Server.Host.Database /// /// Used by unit tests to remind us to setup the correct MSSQL migration downgrades. /// - public static readonly Type MSLatestMigration = typeof(MSAddAdditionalDDParameters); + public static readonly Type MSLatestMigration = typeof(MSGenericTestMergingUpdate); /// - /// Used by unit tests to remind us to setup the correct MSSQL migration downgrades. + /// Used by unit tests to remind us to setup the correct MYSQL migration downgrades. /// - public static readonly Type MYLatestMigration = typeof(MYAddAdditionalDDParameters); + public static readonly Type MYLatestMigration = typeof(MYGenericTestMergingUpdate); /// - /// Used by unit tests to remind us to setup the correct MSSQL migration downgrades. + /// Used by unit tests to remind us to setup the correct PostgresSQL migration downgrades. /// - public static readonly Type PGLatestMigration = typeof(PGAddAdditionalDDParameters); + public static readonly Type PGLatestMigration = typeof(PGGenericTestMergingUpdate); /// - /// Used by unit tests to remind us to setup the correct MSSQL migration downgrades. + /// Used by unit tests to remind us to setup the correct SQLite migration downgrades. /// - public static readonly Type SLLatestMigration = typeof(SLAddAdditionalDDParameters); + public static readonly Type SLLatestMigration = typeof(SLGenericTestMergingUpdate); #endif ///