fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py
index 131c893..7f95983 100644
--- a/Lib/test/test_decimal.py
+++ b/Lib/test/test_decimal.py
@@ -31,8 +31,7 @@
import unittest
from decimal import *
import numbers
-from test.test_support import (SkipTest, run_unittest, run_doctest,
- is_resource_enabled)
+from test.test_support import (run_unittest, run_doctest, is_resource_enabled)
import random
try:
import threading
@@ -194,7 +193,7 @@
def eval_file(self, file):
global skip_expected
if skip_expected:
- raise SkipTest
+ raise unittest.SkipTest
return
for line in open(file).xreadlines():
line = line.replace('\r\n', '').replace('\n', '')