From 48e431b123fd634580fe4e273c090b9f53e4ba11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Sat, 12 Mar 2022 16:27:04 +0100 Subject: [PATCH] Reenable HostApplicationBuilderTests disabled on Mono/Windows (#66521) 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 8bd527ed86366..4b449be98c410 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();