Adopt reviewer's advice

pull/20771/head
Lidi Zheng 5 years ago
parent 2fbd97217b
commit fb74da8620
  1. 7
      src/python/grpcio_tests/tests_aio/unit/channel_test.py
  2. 1
      src/python/grpcio_tests/tests_aio/unit/init_test.py
  3. 1
      src/python/grpcio_tests/tests_aio/unit/server_test.py

@ -41,7 +41,7 @@ class TestChannel(AioTestBase):
)
await hi(messages_pb2.SimpleRequest())
self._loop.run_until_complete(coro())
self.loop.run_until_complete(coro())
def test_unary_unary(self):
@ -59,7 +59,7 @@ class TestChannel(AioTestBase):
await channel.close()
self._loop.run_until_complete(coro())
self.loop.run_until_complete(coro())
def test_unary_call_times_out(self):
@ -91,10 +91,9 @@ class TestChannel(AioTestBase):
self.assertIsNotNone(
exception_context.exception.trailing_metadata())
self._loop.run_until_complete(coro())
self.loop.run_until_complete(coro())
if __name__ == '__main__':
aio.init_grpc_aio()
logging.basicConfig()
unittest.main(verbosity=2)

@ -75,6 +75,5 @@ class TestInsecureChannel(AioTestBase):
if __name__ == '__main__':
aio.init_grpc_aio()
logging.basicConfig()
unittest.main(verbosity=2)

@ -57,6 +57,5 @@ class TestServer(AioTestBase):
if __name__ == '__main__':
aio.init_grpc_aio()
logging.basicConfig()
unittest.main(verbosity=2)

Loading…
Cancel
Save