[pypy-svn] r48916 - pypy/dist/pypy/interpreter/test

arigo at codespeak.net arigo at codespeak.net
Thu Nov 22 10:27:31 CET 2007


Author: arigo
Date: Thu Nov 22 10:27:30 2007
New Revision: 48916

Modified:
   pypy/dist/pypy/interpreter/test/test_module.py
Log:
Fix test.


Modified: pypy/dist/pypy/interpreter/test/test_module.py
==============================================================================
--- pypy/dist/pypy/interpreter/test/test_module.py	(original)
+++ pypy/dist/pypy/interpreter/test/test_module.py	Thu Nov 22 10:27:30 2007
@@ -51,5 +51,4 @@
         if not hasattr(sys, "pypy_objspaceclass"):
             skip("need PyPy for sys.__file__ checking")
         assert sys.__file__ 
-        assert os.path.basename(sys.__file__).startswith('*.py') 
-        
+        assert os.path.basename(sys.__file__) == 'sys'



More information about the Pypy-commit mailing list