Fix skip conditions in some docstings tests.

This commit is contained in:
Serhiy Storchaka 2013-01-28 13:27:02 +02:00
commit 238a617581
1 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ class PropertySubclassTests(unittest.TestCase):
Foo.spam.__doc__, Foo.spam.__doc__,
"spam wrapped in property subclass") "spam wrapped in property subclass")
@unittest.skipIf(sys.flags.optimize <= 2, @unittest.skipIf(sys.flags.optimize >= 2,
"Docstrings are omitted with -O2 and above") "Docstrings are omitted with -O2 and above")
def test_property_setter_copies_getter_docstring(self): def test_property_setter_copies_getter_docstring(self):
class Foo(object): class Foo(object):
@ -219,7 +219,7 @@ class PropertySubclassTests(unittest.TestCase):
FooSub.spam.__doc__, FooSub.spam.__doc__,
"spam wrapped in property subclass") "spam wrapped in property subclass")
@unittest.skipIf(sys.flags.optimize <= 2, @unittest.skipIf(sys.flags.optimize >= 2,
"Docstrings are omitted with -O2 and above") "Docstrings are omitted with -O2 and above")
def test_property_new_getter_new_docstring(self): def test_property_new_getter_new_docstring(self):