mirror of
https://github.com/python/cpython.git
synced 2025-07-31 23:23:11 +00:00
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
This commit is contained in:
parent
c3141a6e96
commit
47d9738b0f
3 changed files with 4 additions and 4 deletions
|
@ -2294,7 +2294,7 @@ class Test_TestSkipping(TestCase):
|
|||
def test_skipping(self):
|
||||
class Foo(unittest.TestCase):
|
||||
def test_skip_me(self):
|
||||
self.skip("skip")
|
||||
self.skipTest("skip")
|
||||
events = []
|
||||
result = LoggingResult(events)
|
||||
test = Foo("test_skip_me")
|
||||
|
@ -2305,7 +2305,7 @@ class Test_TestSkipping(TestCase):
|
|||
# Try letting setUp skip the test now.
|
||||
class Foo(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.skip("testing")
|
||||
self.skipTest("testing")
|
||||
def test_nothing(self): pass
|
||||
events = []
|
||||
result = LoggingResult(events)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue