remove test_support.TestSkipped and just use unittest.SkipTest
diff --git a/Lib/test/test_commands.py b/Lib/test/test_commands.py
index d899d66..530d9e3 100644
--- a/Lib/test/test_commands.py
+++ b/Lib/test/test_commands.py
@@ -9,7 +9,7 @@
warnings.filterwarnings('ignore', r".*commands.getstatus.. is deprecated",
DeprecationWarning)
-from test.test_support import TestSkipped, run_unittest, reap_children
+from test.test_support import SkipTest, run_unittest, reap_children
from commands import *
# The module says:
@@ -19,7 +19,7 @@
# I'll take the comment as given, and skip this suite.
if os.name != 'posix':
- raise TestSkipped('Not posix; skipping test_commands')
+ raise SkipTest('Not posix; skipping test_commands')
class CommandTests(unittest.TestCase):