aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Richard Belleville <rbellevi@google.com>2018-10-31 17:04:51 -0700
committerGravatar Richard Belleville <rbellevi@google.com>2018-10-31 17:04:51 -0700
commitfec37654fb59865c6d602575a9955a5545e94520 (patch)
tree0d15828968173ca3903a1ef83c68d5e1c9d23265
parentacc72c0835eb84a79e779ede7a0383bddd8feef5 (diff)
Fix splat
-rw-r--r--src/python/grpcio_tests/tests/unit/_logging_test.py2
1 files changed, 1 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 0b14f5e325..d378d466b3 100644
--- a/src/python/grpcio_tests/tests/unit/_logging_test.py
+++ b/src/python/grpcio_tests/tests/unit/_logging_test.py
@@ -29,7 +29,7 @@ def patch_stderr(f):
old_stderr = sys.stderr
sys.stderr = six.StringIO()
try:
- f(args, kwargs)
+ f(*args, **kwargs)
finally:
sys.stderr = old_stderr