From bf34e7f6b063e597908299876b0ae5b54a433639 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Sat, 6 Nov 2021 15:44:20 -0400 Subject: [PATCH] [wasm] Wasm.Build.Tests: Re-enable net5.0 tests because 5.0.11 packages .. are now available. fixes https://github.com/dotnet/runtime/issues/59538 --- src/tests/BuildWasmApps/Wasm.Build.Tests/BlazorWasmTests.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tests/BuildWasmApps/Wasm.Build.Tests/BlazorWasmTests.cs b/src/tests/BuildWasmApps/Wasm.Build.Tests/BlazorWasmTests.cs index 727e6589c4c6d..6c7e3ed788be5 100644 --- a/src/tests/BuildWasmApps/Wasm.Build.Tests/BlazorWasmTests.cs +++ b/src/tests/BuildWasmApps/Wasm.Build.Tests/BlazorWasmTests.cs @@ -79,7 +79,6 @@ private CommandResult PublishForRequiresWorkloadTest(string config, string extra [Theory] [InlineData("Debug")] [InlineData("Release")] - [ActiveIssue("https://github.com/dotnet/runtime/issues/59538")] public void Net50Projects_NativeReference(string config) => BuildNet50Project(config, aot: false, expectError: true, @""); @@ -93,7 +92,6 @@ public void Net50Projects_NativeReference(string config) [Theory] [MemberData(nameof(Net50TestData))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/59538")] public void Net50Projects_AOT(string config, bool aot, bool expectError) => BuildNet50Project(config, aot: aot, expectError: expectError);