[pypy-commit] pypy default: Fix renamed import

amauryfa noreply at buildbot.pypy.org
Sat Jun 13 01:47:02 CEST 2015


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: 
Changeset: r78071:468017773f37
Date: 2015-06-13 01:46 +0200
http://bitbucket.org/pypy/pypy/changeset/468017773f37/

Log:	Fix renamed import

diff --git a/lib-python/2.7/test/test_threading_local.py b/lib-python/2.7/test/test_threading_local.py
--- a/lib-python/2.7/test/test_threading_local.py
+++ b/lib-python/2.7/test/test_threading_local.py
@@ -168,7 +168,7 @@
         obj = cls()
         obj.x = 5
         self.assertEqual(obj.__dict__, {'x': 5})
-        if test_support.check_impl_detail():
+        if support.check_impl_detail():
             with self.assertRaises(AttributeError):
                 obj.__dict__ = {}
         with self.assertRaises(AttributeError):


More information about the pypy-commit mailing list