From 4d647cf9c1b1132aa1649110111d3ed28a294cc1 Mon Sep 17 00:00:00 2001 From: Nathaniel Manista Date: Tue, 17 Apr 2018 18:58:11 +0000 Subject: [PATCH] Fix a use of nonexistent .received_cancelled .received_cancelled was changed to .cancelled() in 81edf5ff9af2d90813773acb9c2793e1a4cd1057; this change should have been a part of that change. --- .../grpcio_tests/tests/unit/_cython/_cancel_many_calls_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 3765ce4fb0409..4f8868d3461c4 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 @@ def __init__(self): 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):