aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python
diff options
context:
space:
mode:
authorGravatar Masood Malekghassemi <atash@google.com>2016-03-09 11:51:23 -0800
committerGravatar Masood Malekghassemi <atash@google.com>2016-03-09 11:51:58 -0800
commitec49e156fe62c4c451cd65686efaa07999178166 (patch)
tree7578a8e1cbde59f4f50a7bdfb974b2bef9e76ae1 /src/python
parentd68ee7e2623bdb4c54c0ea383b6c579a959d1b3f (diff)
Fix typo
Diffstat (limited to 'src/python')
-rw-r--r--src/python/grpcio/tests/_runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/tests/_runner.py b/src/python/grpcio/tests/_runner.py
index 38a5432e79..b0dbd92a49 100644
--- a/src/python/grpcio/tests/_runner.py
+++ b/src/python/grpcio/tests/_runner.py
@@ -144,7 +144,7 @@ class Runner(object):
def run(self, suite):
"""See setuptools' test_runner setup argument for information."""
# only run test cases with id starting with given prefix
- testcase_filter = os.getenv('GPRC_PYTHON_TESTRUNNER_FILTER')
+ testcase_filter = os.getenv('GRPC_PYTHON_TESTRUNNER_FILTER')
filtered_cases = []
for case in _loader.iterate_suite_cases(suite):
if not testcase_filter or case.id().startswith(testcase_filter):