Remove line of dead code

pull/20015/head
Richard Belleville 5 years ago
parent ee99f9aa4c
commit d273fdf41d
  1. 1
      src/python/grpcio_tests/tests/unit/_channel_close_test.py

@ -221,7 +221,6 @@ class ChannelCloseTest(unittest.TestCase):
with grpc.insecure_channel('localhost:{}'.format( with grpc.insecure_channel('localhost:{}'.format(
self._port)) as channel: self._port)) as channel:
stream_multi_callable = channel.stream_stream(_STREAM_URI) stream_multi_callable = channel.stream_stream(_STREAM_URI)
request_iterator = (str(i).encode('ascii') for i in range(9999))
endless_iterator = EndlessIterator(b'abc') endless_iterator = EndlessIterator(b'abc')
stream_response_iterator = stream_multi_callable(endless_iterator) stream_response_iterator = stream_multi_callable(endless_iterator)
future = channel.unary_unary(_UNARY_URI).future(b'abc') future = channel.unary_unary(_UNARY_URI).future(b'abc')

Loading…
Cancel
Save