aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/unit_tests/CallTest.php
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-01-23 14:54:33 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-01-23 14:54:33 -0800
commitc0748898293935517ca390977a55db6ea1424f50 (patch)
tree339a2760dbd48aaba03426c4de8dc286496848fe /src/php/tests/unit_tests/CallTest.php
parent8b433a2d1d9c2eb7d76e453cd3f0322adfce1f24 (diff)
parent10f4620e93bd1a398907e7ce3f5f1528f7be61e4 (diff)
Merge github.com:google/grpc into kill-more-printf
Diffstat (limited to 'src/php/tests/unit_tests/CallTest.php')
-rwxr-xr-xsrc/php/tests/unit_tests/CallTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/php/tests/unit_tests/CallTest.php b/src/php/tests/unit_tests/CallTest.php
index 253052a038..795831cb65 100755
--- a/src/php/tests/unit_tests/CallTest.php
+++ b/src/php/tests/unit_tests/CallTest.php
@@ -19,10 +19,10 @@ class CallTest extends PHPUnit_Framework_TestCase{
/**
* @expectedException LogicException
* @expectedExceptionCode Grpc\CALL_ERROR_INVALID_FLAGS
- * @expectedExceptionMessage start_invoke
+ * @expectedExceptionMessage invoke
*/
- public function testStartInvokeRejectsBadFlags() {
- $this->call->start_invoke($this->cq, 0, 0, 0, 0xDEADBEEF);
+ public function testInvokeRejectsBadFlags() {
+ $this->call->invoke($this->cq, 0, 0, 0xDEADBEEF);
}
/**