[pypy-commit] pypy default: fix nameerror

alex_gaynor noreply at buildbot.pypy.org
Tue Apr 10 01:22:21 CEST 2012


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r54273:124c48df1aab
Date: 2012-04-09 19:22 -0400
http://bitbucket.org/pypy/pypy/changeset/124c48df1aab/

Log:	fix nameerror

diff --git a/pypy/annotation/test/test_annrpython.py b/pypy/annotation/test/test_annrpython.py
--- a/pypy/annotation/test/test_annrpython.py
+++ b/pypy/annotation/test/test_annrpython.py
@@ -3754,7 +3754,7 @@
 
         a = self.RPythonAnnotator()
         s = a.build_types(main, [int])
-        assert isinstance(s, SomeInteger)
+        assert isinstance(s, annmodel.SomeInteger)
 
 
 def g(n):


More information about the pypy-commit mailing list