[pypy-svn] r17428 - pypy/dist/pypy/translator/c/test
tismer at codespeak.net
tismer at codespeak.net
Fri Sep 9 19:34:43 CEST 2005
Author: tismer
Date: Fri Sep 9 19:34:41 2005
New Revision: 17428
Modified:
pypy/dist/pypy/translator/c/test/test_typed.py
Log:
renamed a few completely ill-named tests
Modified: pypy/dist/pypy/translator/c/test/test_typed.py
==============================================================================
--- pypy/dist/pypy/translator/c/test/test_typed.py (original)
+++ pypy/dist/pypy/translator/c/test/test_typed.py Fri Sep 9 19:34:41 2005
@@ -283,13 +283,13 @@
f = self.getcompiled(fn)
assert f(1) == fn(1)
- def test_str2int(self):
+ def test_int2str(self):
def fn(i=int):
return str(i)
f = self.getcompiled(fn)
assert f(1) == fn(1)
- def test_float2int(self):
+ def test_float2str(self):
def fn(i=float):
return str(i)
f = self.getcompiled(fn)
More information about the Pypy-commit
mailing list