[pypy-svn] pypy default: Skip the test until the feature is developed
amauryfa
commits-noreply at bitbucket.org
Tue Feb 1 00:43:43 CET 2011
Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch:
Changeset: r41509:0d13246ddb84
Date: 2011-02-01 00:13 +0100
http://bitbucket.org/pypy/pypy/changeset/0d13246ddb84/
Log: Skip the test until the feature is developed
diff --git a/pypy/objspace/std/test/test_complexobject.py b/pypy/objspace/std/test/test_complexobject.py
--- a/pypy/objspace/std/test/test_complexobject.py
+++ b/pypy/objspace/std/test/test_complexobject.py
@@ -440,6 +440,7 @@
assert (1+2j).__getnewargs__() == (1.0, 2.0)
def test_format(self):
+ skip("FIXME")
# empty format string is same as str()
assert format(1+3j, '') == str(1+3j)
assert format(1.5+3.5j, '') == str(1.5+3.5j)
More information about the Pypy-commit
mailing list