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

Unified Diff: testing_support/coverage_utils.py

Issue 1156023008: Fix format string. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Pick up new project name. Created 5 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing_support/coverage_utils.py
diff --git a/testing_support/coverage_utils.py b/testing_support/coverage_utils.py
index 3cd98f5ec240bd56b9e3d2b78e76e12a9a51b845..8b912307c3a3e7e73c158c16c1414ca9cc5ecc99 100644
--- a/testing_support/coverage_utils.py
+++ b/testing_support/coverage_utils.py
@@ -64,7 +64,7 @@ def covered_main(includes, require_native=None, required_percentage=100.0):
COVERAGE.stop()
if COVERAGE.report() < required_percentage:
- print 'FATAL: not at required %f% coverage.' % required_percentage
+ print 'FATAL: not at required %f%% coverage.' % required_percentage
retcode = 2
return retcode
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698