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

arigo at codespeak.net arigo at codespeak.net
Tue Jan 5 11:01:17 CET 2010


Author: arigo
Date: Tue Jan  5 11:01:16 2010
New Revision: 70412

Modified:
   pypy/trunk/pypy/interpreter/test/test_module.py
Log:
Another try to fix this test for Windows.


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	Tue Jan  5 11:01:16 2010
@@ -58,7 +58,7 @@
         r = repr(_pypy_interact)
         assert (r.startswith("<module '_pypy_interact' from ") and
                 ('pypy/lib/_pypy_interact.py' in r or
-                 'pypy\\lib\\_pypy_interact.py' in r.lower()) and
+                 r'pypy\\lib\\_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