From 67e8575b1459983524ffddee5e4c8db6f6a54d8a Mon Sep 17 00:00:00 2001 From: Brennan Date: Fri, 18 Jul 2025 17:01:00 -0700 Subject: [PATCH] Unquarantine InteropTests.cs Closes https://github.com/dotnet/aspnetcore/issues/61057 Closes https://github.com/dotnet/aspnetcore/issues/61051 Closes https://github.com/dotnet/aspnetcore/issues/60245 Closes https://github.com/dotnet/aspnetcore/issues/55652 Closes https://github.com/dotnet/aspnetcore/issues/60903 --- src/Grpc/Interop/test/InteropTests/InteropTests.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Grpc/Interop/test/InteropTests/InteropTests.cs b/src/Grpc/Interop/test/InteropTests/InteropTests.cs index b57fda2d827f..9785d8890c9d 100644 --- a/src/Grpc/Interop/test/InteropTests/InteropTests.cs +++ b/src/Grpc/Interop/test/InteropTests/InteropTests.cs @@ -23,11 +23,9 @@ public InteropTests(ITestOutputHelper output) } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61057")] public Task EmptyUnary() => InteropTestCase("empty_unary"); [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61057")] public Task LargeUnary() => InteropTestCase("large_unary"); [Fact] @@ -40,7 +38,6 @@ public InteropTests(ITestOutputHelper output) public Task PingPong() => InteropTestCase("ping_pong"); [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61051")] public Task EmptyStream() => InteropTestCase("empty_stream"); [Fact] @@ -59,14 +56,12 @@ public InteropTests(ITestOutputHelper output) public Task StatusCodeAndMessage() => InteropTestCase("status_code_and_message"); [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60245")] public Task SpecialStatusMessage() => InteropTestCase("special_status_message"); [Fact] public Task UnimplementedService() => InteropTestCase("unimplemented_service"); [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/55652")] public Task UnimplementedMethod() => InteropTestCase("unimplemented_method"); [Fact] @@ -79,7 +74,6 @@ public InteropTests(ITestOutputHelper output) public Task ServerCompressedUnary() => InteropTestCase("server_compressed_unary"); [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60903")] public Task ServerCompressedStreaming() => InteropTestCase("server_compressed_streaming"); private async Task InteropTestCase(string name)