Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium_android/api.py |
| diff --git a/scripts/slave/recipe_modules/chromium_android/api.py b/scripts/slave/recipe_modules/chromium_android/api.py |
| index 2f2b79b81301c0839bfb904c344610103ba3b6f4..71cd979bea12de83800eec858baf6e47c6148b26 100644 |
| --- a/scripts/slave/recipe_modules/chromium_android/api.py |
| +++ b/scripts/slave/recipe_modules/chromium_android/api.py |
| @@ -1067,7 +1067,7 @@ class AndroidApi(recipe_api.RecipeApi): |
| "android.webkit.cts.ExampleBlacklistedTest": |
| [ |
| { |
| - "name": "testA", |
| + "name": "testA", |
|
RobertoCN
2016/06/28 19:36:37
Undo this change and retrain. Otherwise we'll need
|
| "_bug_id": "crbug.com/123" |
| }, |
| {"name": "testB"} |
| @@ -1075,7 +1075,7 @@ class AndroidApi(recipe_api.RecipeApi): |
| }''' |
| ) |
| expected_failure = self.m.json.loads(expected_failure_json) |
| - |
| + |
| cts_base_dir = self.m.path['build'].join('site_config', 'cts') |
| cts_zip_path = cts_base_dir.join(_cts_file_name) |
| cts_extract_dir = cts_base_dir.join('unzipped') |
| @@ -1133,8 +1133,8 @@ class AndroidApi(recipe_api.RecipeApi): |
| if test_method.get('result') == 'notExecuted': |
| not_executed_tests.append(method_name) |
| elif (test_method.find('./FailedScene') is not None and |
| - test_method.get('name') not in |
| - [ t.get('name') for t in |
| + test_method.get('name') not in |
| + [ t.get('name') for t in |
| expected_failure.get(class_name, []) ]): |
| unexpected_test_failures.append(method_name) |