diff options
author | murgatroid99 <michael.lumish@gmail.com> | 2015-02-03 18:18:28 -0800 |
---|---|---|
committer | murgatroid99 <michael.lumish@gmail.com> | 2015-02-03 18:18:28 -0800 |
commit | 554fe351d30f59aee8c9c15338a5545f15375dd2 (patch) | |
tree | 361c11c819ff59de19902fcae24c4dc5bc03f417 /src/php/tests/interop/interop_client.php | |
parent | 75c9d2f5291f998c9263aebb26f8d87667290a4f (diff) |
Fixed error in new test
Diffstat (limited to 'src/php/tests/interop/interop_client.php')
-rwxr-xr-x | src/php/tests/interop/interop_client.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/tests/interop/interop_client.php b/src/php/tests/interop/interop_client.php index afae738c7e..5266e9a9fa 100755 --- a/src/php/tests/interop/interop_client.php +++ b/src/php/tests/interop/interop_client.php @@ -150,7 +150,7 @@ function pingPong($stub) { } function cancelAfterFirstResponse($stub) { - $call = $stub->StreamingInputCall(); + $call = $stub->FullDuplexCall(); $request = new grpc\testing\StreamingOutputCallRequest(); $request->setResponseType(grpc\testing\PayloadType::COMPRESSABLE); $response_parameters = new grpc\testing\ResponseParameters(); |