Skip to content

Commit

Permalink
fix a bug in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Enter-tainer committed Jan 11, 2018
1 parent b1e7509 commit e6d3cc3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/autotest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import os

test_cases = []
def clean_screen():
print ('\n' * 100)

Expand All @@ -21,6 +20,6 @@ def run_test(case):
exit(0)

test_cases = os.listdir()
test_cases = test_cases.remove("autotest.py")
test_cases.remove("autotest.py")
for i in test_cases:
run_test(i)

0 comments on commit e6d3cc3

Please sign in to comment.