diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-07 03:22:41 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-07 03:22:41 (GMT) |
commit | 437df905370b1f49f24c4ebce13db1ff63c3c378 (patch) | |
tree | 883003a54f881f08b37644432d2dacb0ed73cb2e /Lib | |
parent | 050acaed9926aa0a0367ec1baebbfd797c33ad74 (diff) | |
download | cpython-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.py | 2 |
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.""" |