Index: tools/perf/page_sets/system_health/system_health_stories.py |
diff --git a/tools/perf/page_sets/system_health/system_health_stories.py b/tools/perf/page_sets/system_health/system_health_stories.py |
index 1defe24feb19d85d13811aff07076b2d1e1e228d..416e0fd13cb04fd0920ef5c25873552ff3420efa 100644 |
--- a/tools/perf/page_sets/system_health/system_health_stories.py |
+++ b/tools/perf/page_sets/system_health/system_health_stories.py |
@@ -4,6 +4,8 @@ |
from page_sets.system_health import single_page_stories |
petrcermak
2016/07/08 10:04:31
Remove blank line and sort the imports alphabetica
ulan
2016/07/08 10:34:22
Done.
|
+from page_sets.system_health import platforms |
+ |
from telemetry import story |
@@ -27,9 +29,9 @@ class _SystemHealthStorySet(story.StorySet): |
class DesktopSystemHealthStorySet(_SystemHealthStorySet): |
"""Desktop user stories for Chrome System Health Plan.""" |
- PLATFORM = 'desktop' |
+ PLATFORM = platforms.DESKTOP |
class MobileSystemHealthStorySet(_SystemHealthStorySet): |
"""Mobile user stories for Chrome System Health Plan.""" |
- PLATFORM = 'mobile' |
+ PLATFORM = platforms.MOBILE |