aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/unit/_logging_test.py
diff options
context:
space:
mode:
authorGravatar Richard Belleville <rbellevi@google.com>2018-10-31 17:22:30 -0700
committerGravatar Richard Belleville <rbellevi@google.com>2018-10-31 17:22:30 -0700
commitdc05e31ff1f442e252ef349e5a2c0dba346b38de (patch)
tree5f9564ad0c9ff1a59f381eb9d8e1074ee96c193b /src/python/grpcio_tests/tests/unit/_logging_test.py
parent78eae493b45828372dd8409b53ab5479ac39b248 (diff)
Appease the yapf gods
Diffstat (limited to 'src/python/grpcio_tests/tests/unit/_logging_test.py')
-rw-r--r--src/python/grpcio_tests/tests/unit/_logging_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/python/grpcio_tests/tests/unit/_logging_test.py b/src/python/grpcio_tests/tests/unit/_logging_test.py
index e409a24637..cc814ba46b 100644
--- a/src/python/grpcio_tests/tests/unit/_logging_test.py
+++ b/src/python/grpcio_tests/tests/unit/_logging_test.py
@@ -58,7 +58,8 @@ class LoggingTest(unittest.TestCase):
intended_stream = six.StringIO()
logging.basicConfig(stream=intended_stream)
self.assertEqual(1, len(logging.getLogger().handlers))
- self.assertTrue(logging.getLogger().handlers[0].stream is intended_stream)
+ self.assertTrue(
+ logging.getLogger().handlers[0].stream is intended_stream)
finally:
reload_module(logging)