aboutsummaryrefslogtreecommitdiff
path: root/src/python/grpcio_tests/tests_py3_only/unit/_leak_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/grpcio_tests/tests_py3_only/unit/_leak_test.py')
-rw-r--r--src/python/grpcio_tests/tests_py3_only/unit/_leak_test.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/python/grpcio_tests/tests_py3_only/unit/_leak_test.py b/src/python/grpcio_tests/tests_py3_only/unit/_leak_test.py
index 06fa646601..c917bd1052 100644
--- a/src/python/grpcio_tests/tests_py3_only/unit/_leak_test.py
+++ b/src/python/grpcio_tests/tests_py3_only/unit/_leak_test.py
@@ -68,10 +68,7 @@ def _start_a_test_server():
def _perform_an_rpc(address):
channel = grpc.insecure_channel(address)
- multicallable = channel.unary_unary(
- _TEST_METHOD,
- _registered_method=True,
- )
+ multicallable = channel.unary_unary(_TEST_METHOD)
response = multicallable(_REQUEST)
assert _REQUEST == response