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

Unified Diff: tests/trychange_unittest.py

Issue 503068: Make breakpad, gcl and presubmit_support dependencies optional (Closed)
Patch Set: Fix spurious error Created 11 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
« no previous file with comments | « gclient_utils.py ('k') | trychange.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/trychange_unittest.py
diff --git a/tests/trychange_unittest.py b/tests/trychange_unittest.py
index 5c6612268eeb07a89e8bad80e3a1d33e877d7896..6ed3f92c4ca051f30351aad6645e07bb97b2b347 100644
--- a/tests/trychange_unittest.py
+++ b/tests/trychange_unittest.py
@@ -35,11 +35,11 @@ class TryChangeUnittest(TryChangeTestsBase):
"""General trychange.py tests."""
def testMembersChanged(self):
members = [
- 'EscapeDot', 'GIT', 'GetTryServerSettings', 'GuessVCS',
+ 'EscapeDot', 'GIT', 'GuessVCS',
'HELP_STRING', 'InvalidScript', 'NoTryServerAccess',
- 'SCM', 'SVN', 'TryChange', 'USAGE', 'breakpad',
- 'datetime', 'gcl', 'gclient_utils', 'getpass', 'logging',
- 'optparse', 'os', 'presubmit_support', 'scm', 'shutil', 'socket',
+ 'SCM', 'SVN', 'TryChange', 'USAGE',
+ 'breakpad', 'datetime', 'gclient_utils', 'getpass', 'logging',
+ 'optparse', 'os', 'scm', 'shutil', 'socket',
'subprocess', 'sys', 'tempfile', 'urllib',
]
# If this test fails, you should add the relevant test.
@@ -50,7 +50,7 @@ class SVNUnittest(TryChangeTestsBase):
"""trychange.SVN tests."""
def testMembersChanged(self):
members = [
- 'GetFileNames', 'GetLocalRoot',
+ 'GetBots', 'GetFileNames', 'GetLocalRoot',
]
# If this test fails, you should add the relevant test.
self.compareMembers(trychange.SVN, members)
@@ -74,7 +74,7 @@ class GITUnittest(TryChangeTestsBase):
"""trychange.GIT tests."""
def testMembersChanged(self):
members = [
- 'GetFileNames', 'GetLocalRoot',
+ 'GetBots', 'GetFileNames', 'GetLocalRoot',
]
# If this test fails, you should add the relevant test.
self.compareMembers(trychange.GIT, members)
« no previous file with comments | « gclient_utils.py ('k') | trychange.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698