| Index: tests/scm_unittest.py
|
| diff --git a/tests/scm_unittest.py b/tests/scm_unittest.py
|
| index 454537d57d9295d8d2df035e7fc0247a7abac09c..d4270bd1ddbdb12ffa0181dbcd7e48938a6542d7 100755
|
| --- a/tests/scm_unittest.py
|
| +++ b/tests/scm_unittest.py
|
| @@ -26,9 +26,9 @@ class RootTestCase(BaseSCMTestCase):
|
| def testMembersChanged(self):
|
| self.mox.ReplayAll()
|
| members = [
|
| - 'GetCasedPath', 'GIT', 'SVN', 'ValidateEmail',
|
| - 'gclient_utils', 'glob', 'os', 're', 'shutil', 'subprocess', 'sys',
|
| - 'tempfile', 'time', 'xml',
|
| + 'GetCasedPath', 'GenFakeDiff', 'GIT', 'SVN', 'ValidateEmail',
|
| + 'cStringIO', 'gclient_utils', 'glob', 'os', 're', 'shutil',
|
| + 'subprocess', 'sys', 'tempfile', 'time', 'xml',
|
| ]
|
| # If this test fails, you should add the relevant test.
|
| self.compareMembers(scm, members)
|
| @@ -149,9 +149,10 @@ class SVNTestCase(BaseSCMTestCase):
|
| members = [
|
| 'COMMAND', 'AssertVersion', 'Capture', 'CaptureBaseRevision',
|
| 'CaptureHeadRevision', 'CaptureInfo', 'CaptureStatus',
|
| - 'current_version', 'DiffItem', 'GenerateDiff', 'GetCheckoutRoot',
|
| - 'GetEmail', 'GetFileProperty', 'IsMoved', 'ReadSimpleAuth', 'Run',
|
| - 'RunAndFilterOutput', 'RunAndGetFileList',
|
| + 'current_version', 'DiffItem', 'GenerateDiff',
|
| + 'GetCheckoutRoot', 'GetEmail', 'GetFileProperty', 'IsMoved',
|
| + 'IsMovedInfo', 'ReadSimpleAuth', 'Run', 'RunAndFilterOutput',
|
| + 'RunAndGetFileList',
|
| ]
|
| # If this test fails, you should add the relevant test.
|
| self.compareMembers(scm.SVN, members)
|
|
|