[pypy-svn] r79928 - pypy/trunk/lib-python/modified-2.5.2/test

arigo at codespeak.net arigo at codespeak.net
Thu Dec 9 14:28:19 CET 2010


Author: arigo
Date: Thu Dec  9 14:28:17 2010
New Revision: 79928

Added:
   pypy/trunk/lib-python/modified-2.5.2/test/test_eof.py
      - copied, changed from r79924, pypy/trunk/lib-python/2.5.2/test/test_eof.py
Log:
Fix this test.  Too precise...


Copied: pypy/trunk/lib-python/modified-2.5.2/test/test_eof.py (from r79924, pypy/trunk/lib-python/2.5.2/test/test_eof.py)
==============================================================================
--- pypy/trunk/lib-python/2.5.2/test/test_eof.py	(original)
+++ pypy/trunk/lib-python/modified-2.5.2/test/test_eof.py	Thu Dec  9 14:28:17 2010
@@ -17,7 +17,7 @@
             raise test_support.TestFailed
 
     def test_EOFS(self):
-        expect = "EOF while scanning triple-quoted string (<string>, line 1)"
+        expect = "EOF while scanning triple-quoted string (<string>, lines 1-2)"
         try:
             eval("""'''this is a test""")
         except SyntaxError, msg:



More information about the Pypy-commit mailing list