From 6a1e2f0036aa29978383ebc21f3e64c39f720d46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Fri, 11 Mar 2022 20:17:25 +0100 Subject: [PATCH] Reenable HostApplicationBuilderTests disabled on Mono/Windows They were disabled against https://github.com/dotnet/runtime/issues/34582 which was fixed by https://github.com/dotnet/runtime/pull/64834 --- .../tests/UnitTests/HostApplicationBuilderTests.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libraries/Microsoft.Extensions.Hosting/tests/UnitTests/HostApplicationBuilderTests.cs b/src/libraries/Microsoft.Extensions.Hosting/tests/UnitTests/HostApplicationBuilderTests.cs index 8bd527ed863661..4b449be98c4100 100644 --- a/src/libraries/Microsoft.Extensions.Hosting/tests/UnitTests/HostApplicationBuilderTests.cs +++ b/src/libraries/Microsoft.Extensions.Hosting/tests/UnitTests/HostApplicationBuilderTests.cs @@ -181,7 +181,6 @@ public void CanConfigureAppConfigurationAndRetrieveFromDI() } [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/34582", TestPlatforms.Windows, TargetFrameworkMonikers.Netcoreapp, TestRuntimes.Mono)] public void CanConfigureAppConfigurationFromFile() { HostApplicationBuilder builder = CreateEmptyBuilder(); @@ -432,7 +431,6 @@ public void DisableDefaultServicesAreAvailable() [Theory] [MemberData(nameof(ConfigureHostOptionsTestInput))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/34582", TestPlatforms.Windows, TargetFrameworkMonikers.Netcoreapp, TestRuntimes.Mono)] public void CanConfigureHostOptionsWithDefaults(BackgroundServiceExceptionBehavior testBehavior, TimeSpan testShutdown) { var builder = new HostApplicationBuilder();