]> granicus.if.org Git - python/commitdiff
Fix skip conditions in some docstings tests.
authorSerhiy Storchaka <storchaka@gmail.com>
Mon, 28 Jan 2013 11:24:01 +0000 (13:24 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Mon, 28 Jan 2013 11:24:01 +0000 (13:24 +0200)
Lib/test/test_functools.py
Lib/test/test_property.py

index af19ef7fec7528ac11a2a00e6945aae1c6c95cb4..562cb8237de07c692a48aecaf57cd0b691e4f929 100644 (file)
@@ -259,7 +259,7 @@ class TestWraps(TestUpdateWrapper):
         self.assertEqual(wrapper.__name__, 'f')
         self.assertEqual(wrapper.attr, 'This is also a test')
 
-    @unittest.skipIf(not sys.flags.optimize <= 1,
+    @unittest.skipIf(sys.flags.optimize >= 2,
                      "Docstrings are omitted with -O2 and above")
     def test_default_update_doc(self):
         wrapper = self._default_update()
index e5fc1745a0fee8ea99320d2c661e6e3ab1eee71a..e5a029b7ea7d99d7fd7ee8f6261c01290930f37f 100644 (file)
@@ -163,7 +163,7 @@ class PropertySubclassTests(unittest.TestCase):
             Foo.spam.__doc__,
             "spam wrapped in property subclass")
 
-    @unittest.skipIf(sys.flags.optimize <= 2,
+    @unittest.skipIf(sys.flags.optimize >= 2,
                      "Docstrings are omitted with -O2 and above")
     def test_property_setter_copies_getter_docstring(self):
         class Foo(object):
@@ -196,7 +196,7 @@ class PropertySubclassTests(unittest.TestCase):
             FooSub.spam.__doc__,
             "spam wrapped in property subclass")
 
-    @unittest.skipIf(sys.flags.optimize <= 2,
+    @unittest.skipIf(sys.flags.optimize >= 2,
                      "Docstrings are omitted with -O2 and above")
     def test_property_new_getter_new_docstring(self):