aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2018-04-17 16:29:37 -0700
committerGravatar GitHub <noreply@github.com>2018-04-17 16:29:37 -0700
commit33e57824e01d664b520252a09c92ce397cca5e56 (patch)
tree57616640b74975a9665b54c6704236b88a6cad4f
parent6f3cadb687f7d9e3da3d49b18c3f68463352db6b (diff)
parent4d647cf9c1b1132aa1649110111d3ed28a294cc1 (diff)
Merge pull request #15088 from nathanielmanistaatgoogle/fix-cancel_many_calls_test
Fix a use of nonexistent .received_cancelled.
-rw-r--r--src/python/grpcio_tests/tests/unit/_cython/_cancel_many_calls_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio_tests/tests/unit/_cython/_cancel_many_calls_test.py b/src/python/grpcio_tests/tests/unit/_cython/_cancel_many_calls_test.py
index 3765ce4fb0..4f8868d346 100644
--- a/src/python/grpcio_tests/tests/unit/_cython/_cancel_many_calls_test.py
+++ b/src/python/grpcio_tests/tests/unit/_cython/_cancel_many_calls_test.py
@@ -43,7 +43,7 @@ class _State(object):
def _is_cancellation_event(event):
return (event.tag is _RECEIVE_CLOSE_ON_SERVER_TAG and
- event.batch_operations[0].received_cancelled)
+ event.batch_operations[0].cancelled())
class _Handler(object):