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

This commit is contained in:
Paul Sokolovsky
2017-06-10 20:03:01 +03:00
parent 0161939ed1
commit a2803b74f4
69 changed files with 69 additions and 137 deletions

View File

@@ -8,9 +8,8 @@ except ImportError:
try:
from ucollections import namedtuple
except ImportError:
import sys
print("SKIP")
sys.exit()
raise SystemExit
_DefragResultBase = namedtuple('DefragResult', [ 'foo', 'bar' ])