aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/tests/unit/_cython/_channel_test.py
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2016-05-18 22:12:43 -0700
committerGravatar Julien Boeuf <jboeuf@google.com>2016-05-18 22:12:43 -0700
commita4880374f9e49ce648cdf3b7512804613280075e (patch)
tree8ee37af5eab830def6f5f196e5f79b55169f12f5 /src/python/grpcio/tests/unit/_cython/_channel_test.py
parentfc1ed17fdea8ba574586cfc479f77de3b200f1c6 (diff)
parenta71b0afdc2916e85c03d73eb9fbedd3d9070676a (diff)
Merge branch 'master' of github.com:grpc/grpc into credentials_refactoring
Diffstat (limited to 'src/python/grpcio/tests/unit/_cython/_channel_test.py')
-rw-r--r--src/python/grpcio/tests/unit/_cython/_channel_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/tests/unit/_cython/_channel_test.py b/src/python/grpcio/tests/unit/_cython/_channel_test.py
index 931cd9083e..3dc7a246ae 100644
--- a/src/python/grpcio/tests/unit/_cython/_channel_test.py
+++ b/src/python/grpcio/tests/unit/_cython/_channel_test.py
@@ -60,7 +60,7 @@ def _create_loop_destroy():
def _in_parallel(behavior, arguments):
threads = tuple(
threading.Thread(target=behavior, args=arguments)
- for _ in range(test_constants.PARALLELISM))
+ for _ in range(test_constants.THREAD_CONCURRENCY))
for thread in threads:
thread.start()
for thread in threads: