[pypy-svn] r36517 - pypy/dist/pypy/lang/js/test

santagada at codespeak.net santagada at codespeak.net
Thu Jan 11 18:09:19 CET 2007


Author: santagada
Date: Thu Jan 11 18:09:15 2007
New Revision: 36517

Modified:
   pypy/dist/pypy/lang/js/test/test_interp.py
Log:
no one do i=i+1 in a for loop :)


Modified: pypy/dist/pypy/lang/js/test/test_interp.py
==============================================================================
--- pypy/dist/pypy/lang/js/test/test_interp.py	(original)
+++ pypy/dist/pypy/lang/js/test/test_interp.py	Thu Jan 11 18:09:15 2007
@@ -300,7 +300,7 @@
     
     def test_for(self):
         self.assert_prints("""
-        for (i=0; i<3; i=i+1) {
+        for (i=0; i<3; i++) {
             print(i);
         }
         print(i);



More information about the Pypy-commit mailing list