aboutsummaryrefslogtreecommitdiff
path: root/src/python/grpcio_tests/tests/protoc_plugin/_python_plugin_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/grpcio_tests/tests/protoc_plugin/_python_plugin_test.py')
-rw-r--r--src/python/grpcio_tests/tests/protoc_plugin/_python_plugin_test.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/python/grpcio_tests/tests/protoc_plugin/_python_plugin_test.py b/src/python/grpcio_tests/tests/protoc_plugin/_python_plugin_test.py
index c6e41b3ae8..9a6538cca3 100644
--- a/src/python/grpcio_tests/tests/protoc_plugin/_python_plugin_test.py
+++ b/src/python/grpcio_tests/tests/protoc_plugin/_python_plugin_test.py
@@ -543,17 +543,6 @@ class PythonPluginTest(unittest.TestCase):
)
service.server.stop(None)
- def testRegisteredMethod(self):
- """Tests that we're setting _registered_call_handle when create call using generated stub."""
- service = _CreateService()
- self.assertTrue(service.stub.UnaryCall._registered_call_handle)
- self.assertTrue(
- service.stub.StreamingOutputCall._registered_call_handle
- )
- self.assertTrue(service.stub.StreamingInputCall._registered_call_handle)
- self.assertTrue(service.stub.FullDuplexCall._registered_call_handle)
- service.server.stop(None)
-
@unittest.skipIf(
sys.version_info[0] < 3 or sys.version_info[1] < 6,