Unrevert else clause in TestMatrix

This commit is contained in:
Chris Ross 2019-09-27 21:00:01 -07:00 committed by wtgodbe
parent 5409bd7270
commit 8aaf577742
1 changed files with 10 additions and 8 deletions

View File

@ -237,15 +237,17 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
{ {
VaryByAncmHostingModel(variants, server, tfm, type, arch, archSkip); VaryByAncmHostingModel(variants, server, tfm, type, arch, archSkip);
} }
else
variants.Add(new TestVariant()
{ {
Server = server, variants.Add(new TestVariant()
Tfm = tfm, {
ApplicationType = type, Server = server,
Architecture = arch, Tfm = tfm,
Skip = archSkip, ApplicationType = type,
}); Architecture = arch,
Skip = archSkip,
});
}
} }
} }