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

Unified Diff: tools/telemetry/telemetry/decorators.py

Issue 820433003: Enable smoothness.tough_pinch_zoom_cases on Chrome OS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@powermonitor
Patch Set: Add test Created 6 years 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: tools/telemetry/telemetry/decorators.py
diff --git a/tools/telemetry/telemetry/decorators.py b/tools/telemetry/telemetry/decorators.py
index 0c30c8a4cc3bbc4fd7b7ace60c64d371f23bca80..0b56f7a66f2bae21b8342329183235662a046dc8 100644
--- a/tools/telemetry/telemetry/decorators.py
+++ b/tools/telemetry/telemetry/decorators.py
@@ -169,12 +169,11 @@ def ShouldSkip(test, possible_browser):
for enabled_string in enabled_strings:
if enabled_string in platform_attributes:
return False, None
- return (True,
- 'Skipping %s (%s) because it is only enabled for %s. '
- 'You are running %s.' % (name, str(test),
- ' or '.join(enabled_strings),
- ' '.join(platform_attributes)))
- return False, None
+ return (True,
+ 'Skipping %s (%s) because it is only enabled for %s. '
+ 'You are running %s.' % (name, str(test),
+ ' or '.join(enabled_strings),
+ ' '.join(platform_attributes)))
return False, None

Powered by Google App Engine
This is Rietveld 408576698