Skip to content

Commit

Permalink
fix microbenchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
jtattermusch committed Sep 2, 2019
1 parent 2ea334a commit 7b54e09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/csharp/Grpc.Microbenchmarks/PingBenchmark.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public async Task Cleanup()
await server.ShutdownAsync();
}

class PingClient : LiteClientBase
class PingClient : ClientBase
{
public PingClient(CallInvoker callInvoker) : base(callInvoker) { }
public AsyncUnaryCall<string> PingAsync(string request, CallOptions options)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public async Task Cleanup()
await channel.ShutdownAsync();
}

class PingClient : LiteClientBase
class PingClient : ClientBase
{
public PingClient(CallInvoker callInvoker) : base(callInvoker) { }

Expand Down

0 comments on commit 7b54e09

Please sign in to comment.