Index: tests/git_cl_test.py |
diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py |
index 0a916c7d8136add140122b13982b9ed80d3f9665..f02465db9e74a7014db6ad1be382689494ee3177 100755 |
--- a/tests/git_cl_test.py |
+++ b/tests/git_cl_test.py |
@@ -115,7 +115,7 @@ class TestGitCl(TestCase): |
((['git', 'log', '--pretty=format:%s%n%n%b', 'master...'],), 'foo'), |
((['git', 'config', 'user.email'],), 'me@example.com'), |
((['git', 'diff', '--no-ext-diff', '--stat', '--find-copies-harder', |
- 'master...'],), |
+ '-l100000', 'master...'],), |
'+dat'), |
((['git', 'log', '--pretty=format:%s\n\n%b', 'master..'],), 'desc\n'), |
] |
@@ -193,7 +193,7 @@ class TestGitCl(TestCase): |
def _dcommit_calls_3(cls): |
return [ |
((['git', 'diff', '--no-ext-diff', '--stat', '--find-copies-harder', |
- 'refs/remotes/origin/master', 'refs/heads/working'],), |
+ '-l100000', 'refs/remotes/origin/master', 'refs/heads/working'],), |
(' PRESUBMIT.py | 2 +-\n' |
' 1 files changed, 1 insertions(+), 1 deletions(-)\n')), |
(('About to commit; enter to confirm.',), None), |
@@ -354,7 +354,7 @@ class TestGitCl(TestCase): |
((['git', 'log', '--pretty=format:%s%n%n%b', 'master...'],), 'foo'), |
((['git', 'config', 'user.email'],), 'me@example.com'), |
((['git', 'diff', '--no-ext-diff', '--stat', '--find-copies-harder', |
- 'master...'],), |
+ '-l100000', 'master...'],), |
'+dat'), |
] |