[Python-checkins] cpython: get skipIf from the right place

benjamin.peterson python-checkins at python.org
Tue Sep 6 23:23:11 EDT 2016


https://hg.python.org/cpython/rev/b38e68ff9751
changeset:   103204:b38e68ff9751
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue Sep 06 20:22:41 2016 -0700
summary:
  get skipIf from the right place

files:
  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
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -110,7 +110,7 @@
 
 BREAKPOINT_FN='builtin_id'
 
- at support.skipIf(support.PGO, "not useful for PGO")
+ at unittest.skipIf(support.PGO, "not useful for PGO")
 class DebuggerTests(unittest.TestCase):
 
     """Test that the debugger can debug Python."""

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list