[pypy-svn] r13924 - pypy/dist/pypy/rpython/test

hpk at codespeak.net hpk at codespeak.net
Sun Jun 26 12:18:19 CEST 2005


Author: hpk
Date: Sun Jun 26 12:18:18 2005
New Revision: 13924

Modified:
   pypy/dist/pypy/rpython/test/test_rtuple.py
Log:
fixifix


Modified: pypy/dist/pypy/rpython/test/test_rtuple.py
==============================================================================
--- pypy/dist/pypy/rpython/test/test_rtuple.py	(original)
+++ pypy/dist/pypy/rpython/test/test_rtuple.py	Sun Jun 26 12:18:18 2005
@@ -57,7 +57,7 @@
         tup1 = (3,)
         res = tup + tup1 + ()
         return res[0]*100 + res[1]*10 + res[2]
-    res = interpret(fn, []) 
+    res = interpret(f, []) 
     assert res == 123
 
 def test_tuple_concatenation_mix():



More information about the Pypy-commit mailing list