Fix test_runner.py fast_test_only return type.

This commit is contained in:
Tim Abbott 2016-01-27 13:48:04 -08:00
parent fcc32b1093
commit 3475a5c1ed
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ def run_test(test):
test_method = get_test_method(test)
if fast_tests_only() and is_known_slow_test(test_method):
return
return failed
test_name = full_test_name(test)