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

Unified Diff: tests/gclient_utils_test.py

Issue 3107009: Move ExecutionQueue and WorkItem to gclient_utils.py (Closed)
Patch Set: Update unit test Created 10 years, 4 months 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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/gclient_utils_test.py
diff --git a/tests/gclient_utils_test.py b/tests/gclient_utils_test.py
index f69143356c26a71b8000131949a9c283d47d3050..b214172ba4c4b2a84f5d45286932c9534b565239 100755
--- a/tests/gclient_utils_test.py
+++ b/tests/gclient_utils_test.py
@@ -15,14 +15,15 @@ class GclientUtilsUnittest(SuperMoxTestBase):
"""General gclient_utils.py tests."""
def testMembersChanged(self):
members = [
- 'CheckCall', 'CheckCallError', 'Error', 'FileRead', 'FileWrite',
- 'FindFileUpwards', 'FindGclientRoot', 'GetGClientRootAndEntries',
- 'GetNamedNodeText', 'GetNodeNamedAttributeText',
- 'PathDifference', 'ParseXML', 'PrintableObject', 'RemoveDirectory',
- 'SplitUrlRevision', 'SubprocessCall', 'SubprocessCallAndFilter',
- 'SyntaxErrorToError',
- 'errno', 'logging', 'os', 're', 'stat', 'subprocess', 'sys', 'time',
- 'xml',
+ 'CheckCall', 'CheckCallError', 'Error', 'ExecutionQueue', 'FileRead',
+ 'FileWrite', 'FindFileUpwards', 'FindGclientRoot',
+ 'GetGClientRootAndEntries', 'GetNamedNodeText',
+ 'GetNodeNamedAttributeText', 'PathDifference', 'ParseXML',
+ 'PrintableObject', 'RemoveDirectory', 'SplitUrlRevision',
+ 'SubprocessCall', 'SubprocessCallAndFilter', 'SyntaxErrorToError',
+ 'WorkItem',
+ 'errno', 'logging', 'os', 're', 'stat', 'subprocess', 'sys',
+ 'threading', 'time', 'xml',
]
# If this test fails, you should add the relevant test.
self.compareMembers(gclient_utils, members)
« no previous file with comments | « gclient_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698