tests: Convert remaining "sys.exit()" to "raise SystemExit".

This commit is contained in:
Paul Sokolovsky
2017-06-10 20:14:16 +03:00
parent a2803b74f4
commit 85d809d1f4
88 changed files with 107 additions and 188 deletions

View File

@@ -3,9 +3,8 @@ try:
import uerrno
import websocket
except ImportError:
import sys
print("SKIP")
sys.exit()
raise SystemExit
# put raw data in the stream and do a websocket read
def ws_read(msg, sz):