| Index: tests/gclient_scm_test.py
|
| diff --git a/tests/gclient_scm_test.py b/tests/gclient_scm_test.py
|
| index 55bc9c365e5df808d4a4cac2c9612d5a163cf43e..e91b48c4d68bfe5c80235797996b2cd6e919a6cd 100755
|
| --- a/tests/gclient_scm_test.py
|
| +++ b/tests/gclient_scm_test.py
|
| @@ -1322,6 +1322,8 @@ class ManagedGitWrapperTestCaseMox(BaseTestCase):
|
| def testUpdateNoDotGit(self):
|
| options = self.Options()
|
|
|
| + gclient_scm.os.path.isdir(
|
| + os.path.join(self.base_path, '.git', 'hooks')).AndReturn(False)
|
| gclient_scm.os.path.exists(self.base_path).AndReturn(True)
|
| gclient_scm.os.path.isdir(self.base_path).AndReturn(True)
|
| gclient_scm.os.path.exists(os.path.join(self.base_path, '.git')
|
| @@ -1350,6 +1352,8 @@ class ManagedGitWrapperTestCaseMox(BaseTestCase):
|
| def testUpdateConflict(self):
|
| options = self.Options()
|
|
|
| + gclient_scm.os.path.isdir(
|
| + os.path.join(self.base_path, '.git', 'hooks')).AndReturn(False)
|
| gclient_scm.os.path.exists(self.base_path).AndReturn(True)
|
| gclient_scm.os.path.isdir(self.base_path).AndReturn(True)
|
| gclient_scm.os.path.exists(os.path.join(self.base_path, '.git')
|
|
|