Skip to content
Snippets Groups Projects
Commit 66ec9bb0 authored by Stanley Cheung's avatar Stanley Cheung
Browse files

php: call writesDone in interop test

parent e5ba29f3
No related branches found
No related tags found
No related merge requests found
...@@ -261,8 +261,9 @@ function emptyStream($stub) { ...@@ -261,8 +261,9 @@ function emptyStream($stub) {
// so this test is imeplemented as a timeout to indicate the absence // so this test is imeplemented as a timeout to indicate the absence
// of receiving any response from the server // of receiving any response from the server
$call = $stub->FullDuplexCall(array('timeout' => 100000)); $call = $stub->FullDuplexCall(array('timeout' => 100000));
$call->writesDone();
hardAssert($call->read() === null, 'Server returned too many responses'); hardAssert($call->read() === null, 'Server returned too many responses');
hardAssert($call->getStatus()->code === Grpc\STATUS_DEADLINE_EXCEEDED, hardAssert($call->getStatus()->code === Grpc\STATUS_OK,
'Call did not complete successfully'); 'Call did not complete successfully');
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment