summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-07 03:22:41 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-07 03:22:41 (GMT)
commit437df905370b1f49f24c4ebce13db1ff63c3c378 (patch)
tree883003a54f881f08b37644432d2dacb0ed73cb2e /Lib
parent050acaed9926aa0a0367ec1baebbfd797c33ad74 (diff)
downloadcpython-437df905370b1f49f24c4ebce13db1ff63c3c378.zip
cpython-437df905370b1f49f24c4ebce13db1ff63c3c378.tar.gz
cpython-437df905370b1f49f24c4ebce13db1ff63c3c378.tar.bz2
get skipIf from the right place
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_gdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
index 30b5f16..382c5d0 100644
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -110,7 +110,7 @@ HAS_PYUP_PYDOWN = gdb_has_frame_select()
BREAKPOINT_FN='builtin_id'
-@support.skipIf(support.PGO, "not useful for PGO")
+@unittest.skipIf(support.PGO, "not useful for PGO")
class DebuggerTests(unittest.TestCase):
"""Test that the debugger can debug Python."""