| Index: tests/scm_unittest.py
|
| diff --git a/tests/scm_unittest.py b/tests/scm_unittest.py
|
| index 1c214267c1935a9523c2e139d04eaa3ada5c8ef3..21150f3ff8e7053bfa7ca6b78fb622a75fe08c27 100755
|
| --- a/tests/scm_unittest.py
|
| +++ b/tests/scm_unittest.py
|
| @@ -42,10 +42,10 @@ class RootTestCase(BaseSCMTestCase):
|
| def testMembersChanged(self):
|
| self.mox.ReplayAll()
|
| members = [
|
| - 'GetCasedPath', 'GenFakeDiff', 'GIT', 'SVN', 'ValidateEmail',
|
| + 'ElementTree', 'GetCasedPath', 'GenFakeDiff', 'GIT', 'SVN',
|
| + 'ValidateEmail',
|
| 'cStringIO', 'determine_scm', 'gclient_utils', 'glob', 'logging', 'os',
|
| 're', 'shutil', 'subprocess', 'subprocess2', 'sys', 'tempfile', 'time',
|
| - 'xml',
|
| ]
|
| # If this test fails, you should add the relevant test.
|
| self.compareMembers(scm, members)
|
| @@ -104,6 +104,7 @@ class SVNTestCase(BaseSCMTestCase):
|
| self.mox.StubOutWithMock(scm, 'GetCasedPath')
|
| scm.os.path.abspath = lambda x: x
|
| scm.GetCasedPath = lambda x: x
|
| + # pylint: disable=E1103
|
| scm.SVN.CaptureInfo(self.root_dir + '/foo/bar').AndReturn({
|
| 'Repository Root': 'svn://svn.chromium.org/chrome',
|
| 'URL': 'svn://svn.chromium.org/chrome/trunk/src',
|
|
|