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 11:47:13 -0700
committerGravatar Richard Belleville <rbellevi@google.com>2018-10-31 11:47:13 -0700
commita3ffca14403c6dd6d0678719cbfc06da1471769f (patch)
treeaddd2ef579b0ba4abae2ef689e21c0dec6277fb0 /src/python/grpcio_tests/tests/unit/_logging_test.py
parentdb1294dd47d66a9ba4fd8e1e434ceddb12fdd306 (diff)
Format code
Diffstat (limited to 'src/python/grpcio_tests/tests/unit/_logging_test.py')
-rw-r--r--src/python/grpcio_tests/tests/unit/_logging_test.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/python/grpcio_tests/tests/unit/_logging_test.py b/src/python/grpcio_tests/tests/unit/_logging_test.py
index dcafd38878..08163089de 100644
--- a/src/python/grpcio_tests/tests/unit/_logging_test.py
+++ b/src/python/grpcio_tests/tests/unit/_logging_test.py
@@ -18,10 +18,12 @@ import six
import grpc
import logging
+
class LoggingTest(unittest.TestCase):
- def test_logger_not_occupied(self):
- self.assertEqual(0, len(logging.getLogger().handlers))
+ def test_logger_not_occupied(self):
+ self.assertEqual(0, len(logging.getLogger().handlers))
+
if __name__ == '__main__':
unittest.main(verbosity=2)