Skip to content

Unquarantine InteropTests.cs #62817

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/Grpc/Interop/test/InteropTests/InteropTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand All @@ -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]
Expand All @@ -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)
Expand Down
Loading