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

Unified Diff: tools/telemetry/telemetry/testing/story_set_smoke_test.py

Issue 1533523004: Run codespell on src/tools/telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/testing/story_set_smoke_test.py
diff --git a/tools/telemetry/telemetry/testing/story_set_smoke_test.py b/tools/telemetry/telemetry/testing/story_set_smoke_test.py
index 008773f5f7eaf8c4b0848cb0651ecded627abdcb..78f200cb5027d34226467378533075187a7dfa7c 100644
--- a/tools/telemetry/telemetry/testing/story_set_smoke_test.py
+++ b/tools/telemetry/telemetry/testing/story_set_smoke_test.py
@@ -21,7 +21,7 @@ class StorySetSmokeTest(unittest.TestCase):
self.longMessage = True
def GetAllStorySetClasses(self, story_sets_dir, top_level_dir):
- # We can't test page sets that aren't directly constructable since we
+ # We can't test page sets that aren't directly constructible since we
# don't know what arguments to put for the constructor.
return discover.DiscoverClasses(story_sets_dir, top_level_dir,
story_module.StorySet,
@@ -101,7 +101,7 @@ class StorySetSmokeTest(unittest.TestCase):
if not isinstance(story, page.Page):
return
self.assertTrue(
- # We use basestring instead of str because story's url can be string of
+ # We use basestring instead of str because story's URL can be string of
# unicode.
isinstance(story.url, basestring),
msg='page %s \'s url must have type string' % story.display_name)

Powered by Google App Engine
This is Rietveld 408576698