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

Unified Diff: telemetry/telemetry/decorators.py

Issue 2978643002: Removing bad-continuation param and fixing resulting errors. Fixed indentation errors, in telemetry… (Closed)
Patch Set: Created 3 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
Index: telemetry/telemetry/decorators.py
diff --git a/telemetry/telemetry/decorators.py b/telemetry/telemetry/decorators.py
index 1192782b2646faa6420a360363bf07b3b1839828..9f27fccc156f7c6a03aaefa667287a9f05ab499e 100644
--- a/telemetry/telemetry/decorators.py
+++ b/telemetry/telemetry/decorators.py
@@ -295,7 +295,7 @@ def ShouldSkip(test, possible_browser):
if 'all' in disabled_strings:
return (True, '%s it is unconditionally disabled.' % skip)
if set(disabled_strings) & set(platform_attributes):
- return (True, '%s it is disabled for %s. %s' %
+ return (True, '%s it is disabled for %s. %s' % \
(skip, ' and '.join(disabled_strings), running))
enabled_attr_name = EnabledAttributeName(test)
@@ -304,7 +304,7 @@ def ShouldSkip(test, possible_browser):
if 'all' in enabled_strings:
return False, None # No arguments to @Enabled means always enable.
if not set(enabled_strings) & set(platform_attributes):
- return (True, '%s it is only enabled for %s. %s' %
+ return (True, '%s it is only enabled for %s. %s' % \
(skip, ' or '.join(enabled_strings), running))
return False, None
« no previous file with comments | « telemetry/telemetry/core/tracing_controller_unittest.py ('k') | telemetry/telemetry/internal/actions/drag.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698