aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-10-15 19:44:59 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-10-15 19:44:59 -0700
commit2ca1df10aaa3486d053a49f2fb422f73cfae4e09 (patch)
treeb1884381adbb99978e65c70351e09a8a1e3704a7 /src/csharp
parent5e2db5b518097e9f3b3926543c8d73ef57046552 (diff)
restrict number of iterations for UnaryCallPerformance test
Diffstat (limited to 'src/csharp')
-rw-r--r--src/csharp/Grpc.Core.Tests/ClientServerTest.cs2
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"); });
}