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