summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gl.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_gl.py')
-rwxr-xr-xLib/test/test_gl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_gl.py b/Lib/test/test_gl.py
index 20fd776..ceff597 100755
--- a/Lib/test/test_gl.py
+++ b/Lib/test/test_gl.py
@@ -3,7 +3,7 @@
taken mostly from the documentation.
Roger E. Masse
"""
-from test.test_support import verbose, TestSkipped
+from test.test_support import verbose, SkipTest
import gl, GL, time
glattrs = ['RGBcolor', 'RGBcursor', 'RGBmode', 'RGBrange', 'RGBwritemask',
@@ -87,7 +87,7 @@ def test_main():
try:
display = os.environ['DISPLAY']
except:
- raise TestSkipped, "No $DISPLAY -- skipping gl test"
+ raise SkipTest, "No $DISPLAY -- skipping gl test"
# touch all the attributes of gl without doing anything
if verbose: