aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/qps/client.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/php/tests/qps/client.php')
-rw-r--r--src/php/tests/qps/client.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/tests/qps/client.php b/src/php/tests/qps/client.php
index 08904054eb..1fa60a7d21 100644
--- a/src/php/tests/qps/client.php
+++ b/src/php/tests/qps/client.php
@@ -70,7 +70,7 @@ function qps_client_main($proxy_address, $server_ind) {
$proxystubopts = [];
$proxystubopts['credentials'] = Grpc\ChannelCredentials::createInsecure();
$proxystub = new Grpc\Testing\ProxyClientServiceClient($proxy_address, $proxystubopts);
- list($config, $status) = $proxystub->GetConfig(new Grpc\Testing\Void())->wait();
+ list($config, $status) = $proxystub->GetConfig(new Grpc\Testing\PBVoid())->wait();
hardAssertIfStatusOk($status);
hardAssert($config->getOutstandingRpcsPerChannel() == 1, "Only 1 outstanding RPC supported");