mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
remove test_support.TestSkipped and just use unittest.SkipTest
This commit is contained in:
parent
21f6aac633
commit
888a39b54c
44 changed files with 99 additions and 108 deletions
|
|
@ -93,7 +93,7 @@ class TestMacostools(unittest.TestCase):
|
|||
def test_main():
|
||||
# Skip on wide unicode
|
||||
if len(u'\0'.encode('unicode-internal')) == 4:
|
||||
raise test_support.TestSkipped("test_macostools is broken in USC4")
|
||||
raise unittest.SkipTest("test_macostools is broken in USC4")
|
||||
test_support.run_unittest(TestMacostools)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue