| Index: tests/git_cl_test.py
|
| diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
|
| index e0705fad692a3110a72f1bfaac900bcac187cd57..7c9eb425f4453452e5df3976c829b6de95a36c37 100755
|
| --- a/tests/git_cl_test.py
|
| +++ b/tests/git_cl_test.py
|
| @@ -114,7 +114,8 @@ class TestGitCl(TestCase):
|
| ((['git', 'config', 'branch.master.rietveldpatchset'],), ''),
|
| ((['git', 'log', '--pretty=format:%s%n%n%b', 'master...'],), 'foo'),
|
| ((['git', 'config', 'user.email'],), 'me@example.com'),
|
| - ((['git', 'diff', '--no-ext-diff', '--stat', '-M', 'master...'],),
|
| + ((['git', 'diff', '--no-ext-diff', '--stat', '--find-copies-harder',
|
| + 'master...'],),
|
| '+dat'),
|
| ((['git', 'log', '--pretty=format:%s\n\n%b', 'master..'],), 'desc\n'),
|
| ]
|
| @@ -347,7 +348,8 @@ class TestGitCl(TestCase):
|
| ((['git', 'config', 'branch.master.rietveldpatchset'],), ''),
|
| ((['git', 'log', '--pretty=format:%s%n%n%b', 'master...'],), 'foo'),
|
| ((['git', 'config', 'user.email'],), 'me@example.com'),
|
| - ((['git', 'diff', '--no-ext-diff', '--stat', '-M', 'master...'],),
|
| + ((['git', 'diff', '--no-ext-diff', '--stat', '--find-copies-harder',
|
| + 'master...'],),
|
| '+dat'),
|
| ]
|
|
|
|
|