[pypy-svn] r47407 - in pypy/dist/pypy/translator: jvm/test oosupport/test_template

antocuni at codespeak.net antocuni at codespeak.net
Fri Oct 12 10:40:39 CEST 2007


Author: antocuni
Date: Fri Oct 12 10:40:38 2007
New Revision: 47407

Modified:
   pypy/dist/pypy/translator/jvm/test/test_op.py
   pypy/dist/pypy/translator/oosupport/test_template/operations.py
Log:
fix the name of the test, it was a bit misleading.



Modified: pypy/dist/pypy/translator/jvm/test/test_op.py
==============================================================================
--- pypy/dist/pypy/translator/jvm/test/test_op.py	(original)
+++ pypy/dist/pypy/translator/jvm/test/test_op.py	Fri Oct 12 10:40:38 2007
@@ -5,5 +5,5 @@
 # ====> ../../oosupport/test_template/operations.py
 
 class TestOperations(JvmTest, BaseTestOperations):
-    def test_compare_big_ulongs(self):
+    def test_compare_big_ullongs(self):
         py.test.skip('fixme!')

Modified: pypy/dist/pypy/translator/oosupport/test_template/operations.py
==============================================================================
--- pypy/dist/pypy/translator/oosupport/test_template/operations.py	(original)
+++ pypy/dist/pypy/translator/oosupport/test_template/operations.py	Fri Oct 12 10:40:38 2007
@@ -205,7 +205,7 @@
         x = sys.maxint+1
         assert self.interpret(f, [r_ulonglong(x)]) == x >> 1
         
-    def test_compare_big_ulongs(self):
+    def test_compare_big_ullongs(self):
         bigval = r_ulonglong(9223372036854775808L)
         def fn(x):
             if x > bigval: return 1



More information about the Pypy-commit mailing list