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

@@ -7,8 +7,7 @@ try:
machine.time_pulse_us
except AttributeError:
print("SKIP")
import sys
sys.exit()
raise SystemExit
class ConstPin(machine.PinBase):