Commit d6a8e6d2 authored by Benjamin Peterson's avatar Benjamin Peterson

fix skipping condition

parent 8eeb1dcb
...@@ -118,7 +118,7 @@ class PropertyTests(unittest.TestCase): ...@@ -118,7 +118,7 @@ class PropertyTests(unittest.TestCase):
self.assertEqual(base.__class__.spam.__doc__, "spam spam spam") self.assertEqual(base.__class__.spam.__doc__, "spam spam spam")
self.assertEqual(sub.__class__.spam.__doc__, "spam spam spam") self.assertEqual(sub.__class__.spam.__doc__, "spam spam spam")
@unittest.skipIf(sys.flags.optimize >= 1, @unittest.skipIf(sys.flags.optimize >= 2,
"Docstrings are omitted with -O2 and above") "Docstrings are omitted with -O2 and above")
def test_property_getter_doc_override(self): def test_property_getter_doc_override(self):
newgettersub = PropertySubNewGetter() newgettersub = PropertySubNewGetter()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment