[pypy-svn] r75580 - pypy/trunk/pypy/interpreter/test

arigo at codespeak.net arigo at codespeak.net
Fri Jun 25 12:29:58 CEST 2010


Author: arigo
Date: Fri Jun 25 12:29:56 2010
New Revision: 75580

Modified:
   pypy/trunk/pypy/interpreter/test/test_module.py
Log:
Typo.


Modified: pypy/trunk/pypy/interpreter/test/test_module.py
==============================================================================
--- pypy/trunk/pypy/interpreter/test/test_module.py	(original)
+++ pypy/trunk/pypy/interpreter/test/test_module.py	Fri Jun 25 12:29:56 2010
@@ -58,7 +58,7 @@
         r = repr(_pypy_interact)
         assert (r.startswith("<module '_pypy_interact' from ") and
                 ('lib_pypy/_pypy_interact.py' in r or
-                 r'lib_pypy\\_interact.py' in r.lower()) and
+                 r'lib_pypy\\_pypy_interact.py' in r.lower()) and
                 r.endswith('>'))
         nofile = type(_pypy_interact)('nofile', 'foo')
         assert repr(nofile) == "<module 'nofile' from ?>"



More information about the Pypy-commit mailing list