Fix some test cases for expect testing

This commit is contained in:
K. Lange 2021-01-04 21:44:16 +09:00
parent e5a1756543
commit bc12529e75
3 changed files with 3 additions and 6 deletions

View File

@ -1,6 +1,4 @@
import fileio let x = 2
let x = int(fileio.stdin.readline()[:-1])
if x == 1: if x == 1:
print "one" print "one"

View File

@ -1,7 +1,7 @@
import system import time
try: try:
system.sleep() time.sleep()
except: except:
print "oh no! " + exception print "oh no! " + exception

View File

@ -27,4 +27,3 @@ try:
except: except:
print "This is the outer handler." print "This is the outer handler."
print exception print exception
raise exception