Commit 09600150 authored by Guido van Rossum's avatar Guido van Rossum

Should raise TestSkipped, not ImportError, when deciding to skip the

test.
parent 9a8c8e27
......@@ -3,9 +3,9 @@
# XXX This must be run manually -- somehow the I/O redirection of the
# regression test breaks the test.
from test_support import verbose, verify, TESTFN
from test_support import verbose, verify, TESTFN, TestSkipped
if not verbose:
raise ImportError, "test_socketserver can only be run manually"
raise TestSkipped, "test_socketserver can only be run manually"
from SocketServer import *
import socket
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment