From 2f8f3a32f408c8806f34c501bb0f3ab959ae3d4b Mon Sep 17 00:00:00 2001 From: Argo-Surface Date: Sun, 20 Jan 2019 17:17:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=95=E5=85=83=E6=B5=8B=E8=AF=95=EF=BC=9AMy?= =?UTF-8?q?SQL=E6=9D=A1=E4=BB=B6=E4=B8=8B=E6=B5=8B=E8=AF=95=E5=A4=B1?= =?UTF-8?q?=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- UnitTest/TestHelper.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UnitTest/TestHelper.cs b/UnitTest/TestHelper.cs index 2b875eb9..66b172f8 100644 --- a/UnitTest/TestHelper.cs +++ b/UnitTest/TestHelper.cs @@ -80,6 +80,7 @@ namespace UnitTest #if MySQL builder.ConfigureAppConfiguration(app => app.AddInMemoryCollection(new KeyValuePair[] { new KeyValuePair("DB:0:Enabled", "false"), + new KeyValuePair("DB:1:Enabled", "false"), new KeyValuePair("DB:2:Enabled", "true"), new KeyValuePair("DB:2:ConnectionStrings:ba", MySqlConnectionString) })); @@ -88,6 +89,8 @@ namespace UnitTest #if Npgsql builder.ConfigureAppConfiguration(app => app.AddInMemoryCollection(new KeyValuePair[] { new KeyValuePair("DB:0:Enabled", "false"), + new KeyValuePair("DB:1:Enabled", "false"), + new KeyValuePair("DB:2:Enabled", "false"), new KeyValuePair("DB:3:Enabled", "true"), new KeyValuePair("DB:3:ConnectionStrings:ba", NpgSqlConnectionString) }));