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 565dede commit 7710f04Copy full SHA for 7710f04
test/Grpc.Net.Client.Tests/AsyncUnaryCallTests.cs
@@ -81,10 +81,8 @@ public async Task AsyncUnaryCall_Success_HttpRequestMessagePopulated()
81
Assert.AreEqual("grpc-dotnet", grpcVersion.Product?.Name);
82
Assert.IsTrue(!string.IsNullOrEmpty(grpcVersion.Product?.Version));
83
84
- // Santity check that the user agent doesn't have the git hash in it and isn't too long.
85
- // Sending a long user agent with each call has performance implications.
+ // Sanity check that the user agent doesn't have the git hash in it.
86
Assert.IsFalse(grpcVersion.Product!.Version!.Contains('+'));
87
- Assert.IsTrue(grpcVersion.Product!.Version!.Length <= 10);
88
}
89
90
[Test]
0 commit comments