[Python-checkins] r75957 - python/trunk/Lib/test/regrtest.py

georg.brandl python-checkins at python.org
Thu Oct 29 22:44:57 CET 2009


Author: georg.brandl
Date: Thu Oct 29 22:44:56 2009
New Revision: 75957

Log:
Fix constant name.

Modified:
   python/trunk/Lib/test/regrtest.py

Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Thu Oct 29 22:44:56 2009
@@ -854,7 +854,7 @@
         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


More information about the Python-checkins mailing list