diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-06 20:22:41 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-06 20:22:41 -0700 |
commit | 437df905370b1f49f24c4ebce13db1ff63c3c378 (patch) | |
tree | 883003a54f881f08b37644432d2dacb0ed73cb2e /Lib/test/test_gdb.py | |
parent | 050acaed9926aa0a0367ec1baebbfd797c33ad74 (diff) | |
download | cpython-git-437df905370b1f49f24c4ebce13db1ff63c3c378.tar.gz |
get skipIf from the right place
Diffstat (limited to 'Lib/test/test_gdb.py')
-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 30b5f16780..382c5d009c 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.""" |