| 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
|
|
|