Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Unified Diff: chrome/test/mini_installer/test_installer.py

Issue 429013004: Fix typos in num_failures_by_type for json results. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | mojo/tools/run_mojo_python_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/mini_installer/test_installer.py
diff --git a/chrome/test/mini_installer/test_installer.py b/chrome/test/mini_installer/test_installer.py
index 7a9521a793f7bbb18a30d0beb3f88ad991dd2cf3..681fba85459ce80b874ffa36181d8f87d9dd7b07 100644
--- a/chrome/test/mini_installer/test_installer.py
+++ b/chrome/test/mini_installer/test_installer.py
@@ -335,8 +335,8 @@ def _FullResults(suite, result, metadata):
failed_test_names = _FailedTestNames(result)
full_results['num_failures_by_type'] = {
- 'Failure': len(failed_test_names),
- 'Pass': len(all_test_names) - len(failed_test_names),
+ 'FAIL': len(failed_test_names),
+ 'PASS': len(all_test_names) - len(failed_test_names),
}
full_results['tests'] = {}
« no previous file with comments | « no previous file | mojo/tools/run_mojo_python_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698