Index: tests/git_cl_test.py |
=================================================================== |
--- tests/git_cl_test.py (revision 225130) |
+++ tests/git_cl_test.py (working copy) |
@@ -188,15 +188,16 @@ |
@classmethod |
def _git_upload_calls(cls, private): |
if private: |
+ cc_call = [] |
private_call = [] |
else: |
+ cc_call = [((['git', 'config', 'rietveld.cc'],), '')] |
private_call = [ |
((['git', 'config', 'rietveld.private'],), '')] |
return [ |
((['git', 'config', 'core.editor'],), ''), |
- ((['git', 'config', 'rietveld.cc'],), '') |
- ] + private_call + [ |
+ ] + cc_call + private_call + [ |
((['git', 'config', 'branch.master.base-url'],), ''), |
((['git', |
'config', '--local', '--get-regexp', '^svn-remote\\.'],), |