We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a07e842 commit 93ab2aaCopy full SHA for 93ab2aa
tests/protobuf-net.Grpc.Test.Integration/Issues/Issue75_Exceptions.cs
@@ -34,8 +34,9 @@ public interface IInterceptedFaultTest
34
ValueTask Fault();
35
}
36
37
- public Issue75(Issue75ServerFixture _)
+ public Issue75(Issue75ServerFixture serverFixture)
38
{
39
+ if (serverFixture is null) throw new ArgumentNullException(nameof(serverFixture));
40
GrpcClientFactory.AllowUnencryptedHttp2 = true;
41
42
0 commit comments