diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2015-10-15 19:44:59 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2015-10-15 19:44:59 -0700 |
commit | 2ca1df10aaa3486d053a49f2fb422f73cfae4e09 (patch) | |
tree | b1884381adbb99978e65c70351e09a8a1e3704a7 /src | |
parent | 5e2db5b518097e9f3b3926543c8d73ef57046552 (diff) |
restrict number of iterations for UnaryCallPerformance test
Diffstat (limited to 'src')
-rw-r--r-- | src/csharp/Grpc.Core.Tests/ClientServerTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core.Tests/ClientServerTest.cs b/src/csharp/Grpc.Core.Tests/ClientServerTest.cs index 68279a2007..e58528ff50 100644 --- a/src/csharp/Grpc.Core.Tests/ClientServerTest.cs +++ b/src/csharp/Grpc.Core.Tests/ClientServerTest.cs @@ -210,7 +210,7 @@ namespace Grpc.Core.Tests }); var callDetails = helper.CreateUnaryCall(); - BenchmarkUtil.RunBenchmark(100, 100, + BenchmarkUtil.RunBenchmark(1, 10, () => { Calls.BlockingUnaryCall(callDetails, "ABC"); }); } |