Merge "Simplified boolean variable check"

This commit is contained in:
Jenkins
2015-11-27 19:33:59 +00:00
committed by Gerrit Code Review

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: