[pypy-svn] r75581 - pypy/trunk/pypy/objspace/std/test

arigo at codespeak.net arigo at codespeak.net
Fri Jun 25 12:33:53 CEST 2010


Author: arigo
Date: Fri Jun 25 12:33:52 2010
New Revision: 75581

Modified:
   pypy/trunk/pypy/objspace/std/test/test_shadowtracking.py
Log:
Attempt to reduce randomness here.


Modified: pypy/trunk/pypy/objspace/std/test/test_shadowtracking.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/test/test_shadowtracking.py	(original)
+++ pypy/trunk/pypy/objspace/std/test/test_shadowtracking.py	Fri Jun 25 12:33:52 2010
@@ -209,6 +209,7 @@
         a = A()
         names = [name for name in A.__dict__.keys()
                       if not name.startswith('_')]
+        names.sort()
         names_repeated = names * 10
         result = []
         __pypy__.reset_method_cache_counter()



More information about the Pypy-commit mailing list