From 7228c15e28100edfe48050fd5367335a7674cb7d Mon Sep 17 00:00:00 2001 From: John Luo Date: Sat, 25 Mar 2017 21:53:59 -0700 Subject: [PATCH] Use FrameworkSkipCondition Instead of the removed SkipIfCurrentRuntimeIsCoreClr --- test/ServerComparison.FunctionalTests/HelloWorldTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ServerComparison.FunctionalTests/HelloWorldTest.cs b/test/ServerComparison.FunctionalTests/HelloWorldTest.cs index 3e42bf4a7d..d14460919f 100644 --- a/test/ServerComparison.FunctionalTests/HelloWorldTest.cs +++ b/test/ServerComparison.FunctionalTests/HelloWorldTest.cs @@ -53,7 +53,7 @@ namespace ServerComparison.FunctionalTests [SkipIfEnvironmentVariableNotEnabled("IIS_VARIATIONS_ENABLED")] [OSSkipCondition(OperatingSystems.Linux)] [OSSkipCondition(OperatingSystems.MacOSX)] - [SkipIfCurrentRuntimeIsCoreClr] + [FrameworkSkipCondition(RuntimeFrameworks.CoreCLR)] [InlineData(ServerType.IIS, RuntimeFlavor.Clr, RuntimeArchitecture.x86, "http://localhost:5072/", ApplicationType.Portable)] //[InlineData(ServerType.IIS, RuntimeFlavor.CoreClr, RuntimeArchitecture.x86, "http://localhost:5073/", ApplicationType.Portable)] public Task HelloWorld_IIS_X86(ServerType serverType, RuntimeFlavor runtimeFlavor, RuntimeArchitecture architecture, string applicationBaseUrl, ApplicationType applicationType)