[pypy-svn] r42613 - pypy/dist/pypy/translator/cli/test

antocuni at codespeak.net antocuni at codespeak.net
Thu May 3 11:08:11 CEST 2007


Author: antocuni
Date: Thu May  3 11:08:10 2007
New Revision: 42613

Modified:
   pypy/dist/pypy/translator/cli/test/test_backendopt.py
Log:
typo



Modified: pypy/dist/pypy/translator/cli/test/test_backendopt.py
==============================================================================
--- pypy/dist/pypy/translator/cli/test/test_backendopt.py	(original)
+++ pypy/dist/pypy/translator/cli/test/test_backendopt.py	Thu May  3 11:08:10 2007
@@ -4,15 +4,11 @@
      TestTypedOptimizedSwitchTestCase as c_TestTypedOptimizedSwitchTestCase
 
 class CTestCompat:
-    backend_opt = {
-        'merge_if_blocks': True
-        }
-
     def CodeGenerator(self):
         return self
 
     def getcompiled(self, fn, annotation):
-        return compile_function(fn, annotation, backend_opt=self.backend_opt)
+        return compile_function(fn, annotation, backendopt=True)
 
 class TestOptimizedSwitchTestCase(CTestCompat, c_TestTypedOptimizedSwitchTestCase):
 



More information about the Pypy-commit mailing list