aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/_runner.py
diff options
context:
space:
mode:
authorGravatar Vizerai <jsking@google.com>2017-01-26 13:26:30 -0800
committerGravatar Vizerai <jsking@google.com>2017-01-26 13:26:30 -0800
commite0cd44aa01cfa697002c7c8884f98d65cc2f7ebd (patch)
treec44e00ea6e4a6350d2af4f514ac268bb9a224544 /src/python/grpcio_tests/tests/_runner.py
parentb0b86d7504dc7cf25d2616927196203c8ee41373 (diff)
parent1291fd4b2f9f502f412c3d6cd5dd5fdc18092842 (diff)
Merge branch 'master' of https://github.com/Vizerai/grpc into tracing_API
Diffstat (limited to 'src/python/grpcio_tests/tests/_runner.py')
-rw-r--r--src/python/grpcio_tests/tests/_runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/grpcio_tests/tests/_runner.py b/src/python/grpcio_tests/tests/_runner.py
index 59964b271c..1138a2279d 100644
--- a/src/python/grpcio_tests/tests/_runner.py
+++ b/src/python/grpcio_tests/tests/_runner.py
@@ -196,8 +196,8 @@ class Runner(object):
# Run the tests
result.startTestRun()
for augmented_case in augmented_cases:
- sys.stdout.write('Running {}\n'.format(augmented_case.case.id(
- )))
+ sys.stdout.write(
+ 'Running {}\n'.format(augmented_case.case.id()))
sys.stdout.flush()
case_thread = threading.Thread(
target=augmented_case.case.run, args=(result,))