Merge "Simplified boolean variable check"

This commit is contained in:
Jenkins 2015-11-27 19:33:59 +00:00 committed by Gerrit Code Review
commit 4cf44ea36c
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ def main():
for test in tests:
test_list.append(string.replace(test[0:-3], '/', '.'))
if test_list == []:
if not test_list:
test_works = False
expect_failure = ""
else: