From: Benjamin Peterson <benjamin@python.org>
Date: Wed, 7 Sep 2016 03:22:41 +0000 (-0700)
Subject: get skipIf from the right place
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=437df905370b1f49f24c4ebce13db1ff63c3c378;p=python

get skipIf from the right place
---

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."""