Update run_tests.py

This commit is contained in:
Joshua Harlow 2012-02-13 23:10:32 -08:00
parent 7e03ea5d2b
commit caad8cde12
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ def parse_suite_filter():
if __name__ == '__main__':
SUITE_FILTER = parse_suite_filter()
if SUITE_FILTER:
TESTS = [t for t in TESTS if filter in str(t)]
TESTS = [t for t in TESTS if SUITE_FILTER in str(t)]
if not TESTS:
print 'No test configuration by the name %s found' % SUITE_FILTER
sys.exit(2)