From 8aaf577742f6c6081267f8fe184169beabc7fd48 Mon Sep 17 00:00:00 2001 From: Chris Ross Date: Fri, 27 Sep 2019 21:00:01 -0700 Subject: [PATCH] Unrevert else clause in TestMatrix --- .../src/TestMatrix.cs | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/Hosting/Server.IntegrationTesting/src/TestMatrix.cs b/src/Hosting/Server.IntegrationTesting/src/TestMatrix.cs index 5ec7e5621c..deb7c17343 100644 --- a/src/Hosting/Server.IntegrationTesting/src/TestMatrix.cs +++ b/src/Hosting/Server.IntegrationTesting/src/TestMatrix.cs @@ -237,15 +237,17 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting { VaryByAncmHostingModel(variants, server, tfm, type, arch, archSkip); } - - variants.Add(new TestVariant() + else { - Server = server, - Tfm = tfm, - ApplicationType = type, - Architecture = arch, - Skip = archSkip, - }); + variants.Add(new TestVariant() + { + Server = server, + Tfm = tfm, + ApplicationType = type, + Architecture = arch, + Skip = archSkip, + }); + } } }