diff options
author | Georg Brandl <georg@python.org> | 2009-10-29 21:44:56 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-29 21:44:56 (GMT) |
commit | 93c21714946d5fa287bb4aa1d9acb46d55f0b742 (patch) | |
tree | 332ae3366b565ab5bf6d7ec4249dae8abb312329 /Lib/test | |
parent | 43a17ff016f1a47dd0a45bf0db0ff015e5bb3ddb (diff) | |
download | cpython-93c21714946d5fa287bb4aa1d9acb46d55f0b742.zip cpython-93c21714946d5fa287bb4aa1d9acb46d55f0b742.tar.gz cpython-93c21714946d5fa287bb4aa1d9acb46d55f0b742.tar.bz2 |
Fix constant name.
Diffstat (limited to 'Lib/test')
-rwxr-xr-x | Lib/test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index c337842..259e592 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -854,7 +854,7 @@ def runtest_inner(test, verbose, quiet, if refleak: return FAILED, test_time if environment.changed: - return ENVIRONMENT_CHANGED, test_time + return ENV_CHANGED, test_time # Except in verbose mode, tests should not print anything if verbose or huntrleaks: return PASSED, test_time |