[pypy-svn] r66146 - pypy/branch/pyjitpl5/pypy/jit/tl/test

antocuni at codespeak.net antocuni at codespeak.net
Tue Jul 7 12:03:26 CEST 2009


Author: antocuni
Date: Tue Jul  7 12:03:25 2009
New Revision: 66146

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/test/test_tla.py
Log:
typos


Modified: pypy/branch/pyjitpl5/pypy/jit/tl/test/test_tla.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/tl/test/test_tla.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/tl/test/test_tla.py	Tue Jul  7 12:03:25 2009
@@ -20,6 +20,7 @@
     assert w_b.is_true()
     assert w_c.is_true()
     assert w_b.add(w_c).intvalue == 42
+    assert w_b.getrepr() == '10'
 
 
 def assemble(mylist):
@@ -134,7 +135,7 @@
 def test_mul_strings():
     py.test.skip('exercise!')
     code = [
-        tla.CONST_INT, 3
+        tla.CONST_INT, 3,
         tla.MUL,
         tla.RETURN
         ] 
@@ -144,7 +145,7 @@
 def test_div_float():
     py.test.skip('exercise!')
     code = [
-        tla.CONST_INT, 2
+        tla.CONST_INT, 2,
         tla.DIV,
         tla.RETURN
         ]



More information about the Pypy-commit mailing list