| Index: tests/git_cl_test.py
|
| diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
|
| index c3fdb0754b867f3d66f5137b4a19f36280cdc14e..e0705fad692a3110a72f1bfaac900bcac187cd57 100755
|
| --- a/tests/git_cl_test.py
|
| +++ b/tests/git_cl_test.py
|
| @@ -114,7 +114,7 @@ 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', '-C', '-C', 'master...'],),
|
| + ((['git', 'diff', '--no-ext-diff', '--stat', '-M', 'master...'],),
|
| '+dat'),
|
| ((['git', 'log', '--pretty=format:%s\n\n%b', 'master..'],), 'desc\n'),
|
| ]
|
| @@ -217,7 +217,7 @@ class TestGitCl(TestCase):
|
| '--message', description
|
| ] + args + [
|
| '--cc', 'joe@example.com',
|
| - 'master...', '--', '-C',
|
| + 'master...'
|
| ]
|
|
|
| def _run_reviewer_test(
|
| @@ -347,7 +347,7 @@ 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', '-C', '-C', 'master...'],),
|
| + ((['git', 'diff', '--no-ext-diff', '--stat', '-M', 'master...'],),
|
| '+dat'),
|
| ]
|
|
|
|
|